-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (67 loc) · 4.29 KB
/
index.html
File metadata and controls
69 lines (67 loc) · 4.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Fetch Xml Formatter Tool Online</title>
<meta name="description" content="Online tool for quick formatting of fetchXML in Dynamics CRM before using into C#/JS code">
<meta name="keywords" content="fetchXML,Dynamics,CRM,365,CX">
<meta name="author" content="Ashish Vishwakarma">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="milligram.min.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="balloon.min.css" />
</head>
<body>
<div class="row">
<div class="column column-25" style="position:relative">
<h1></h1>
<h1><fetchXml<font color="#9b4dca">/</font>></h1>
<h1><formatter<font color="#9b4dca">/</font>></h1>
<h1><online<font color="#9b4dca">/</font>></h1>
<div style="bottom:0px; position:absolute;">
<a class="github-button" href="https://github.com/AshV" data-size="large" data-show-count="true" aria-label="Follow @AshV on GitHub">Follow @AshV</a>
<a class="github-button" href="https://github.com/AshV/FetchXmlFormatter" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star AshV/FetchXmlFormatter on GitHub">Star</a>
<br />
<a href="https://arunpotti.wordpress.com/2014/11/15/fetchxml-formatter-tool/" target="_blank" style="color:gray;">Inspired from Arun's CRM Blog</a>
<br />
<br />
</div>
</div>
<div class="column column-75">
<textarea id="src" placeholder="Paste your fetchXML here.
<fetch mapping='logical'>
<entity name='account'>
<attribute name='accountid'/>
<attribute name='name'/>
<link-entity name='systemuser' to='owninguser'>
<filter type='and'>
<condition attribute='lastname' operator='ne' value='Cannon' />
</filter>
</link-entity>
</entity>
</fetch> " wrap="off" autofocus></textarea>
</div>
</div>
<div class="row">
<div class="column column-30" data-balloon="Click To Copy." data-balloon-pos="up">
<textarea class="btn" data-clipboard-target="#cs" id="cs" placeholder="C# formatted syntax appears here." wrap="off" readonly></textarea>
</div>
<div class="column column-30" data-balloon="Click To Copy." data-balloon-pos="up">
<textarea class="btn" data-clipboard-target="#js" id="js" placeholder="JavaScript formatted syntax appears here." wrap="off" readonly></textarea>
</div>
<div class="column column-30" data-balloon="Click To Copy." data-balloon-pos="up">
<textarea class="btn" data-clipboard-target="#jsLint" id="jsLint" placeholder="JavaScript formatted JSlint safe syntax appears here." wrap="off" readonly></textarea>
</div>
<div style="bottom:0px; position:absolute;font-size:small;right:25px">
<b>FetchXml Formatter Online</b> hosted with <font color="red">❤</font> by <a href="https://github.com/AshV/FetchXmlFormatter">GitHub</a>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
<script src="clipboard.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js" type="text/javascript"></script>
<script src="https://cdn.rawgit.com/smore-inc/clippy.js/master/build/clippy.min.js" type="text/javascript"></script>
<script src="clippy.js" type="text/javascript"></script>
<script>new Clipboard('.btn');</script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script> (function (i, s, o, g, r, a, m) { i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { (i[r].q = i[r].q || []).push(arguments) }, i[r].l = 1 * new Date(); a = s.createElement(o), m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga'); ga('create', 'UA-88171590-1', 'auto'); ga('send', 'pageview');</script>
</body>
</html>