This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index-3.html
32 lines (32 loc) · 2.37 KB
/
index-3.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>CFQueryReader Demo for ExtJS 3.x</title>
<meta name="author" content="Steve 'Cutter' Blades" />
<meta name="copyright" content="(c)2008 - 2012 Stephen Blades" />
<link rel="stylesheet" type="text/css" href="/js/ext-3/resources/css/ext-all.css" />
<link rel="stylesheet" type="text/css" href="/css/default.css" />
<link rel="shortcut icon" href="/favicon_32x32.ico" />
<script language="javascript" type="text/javascript" src="/js/ext-3/adapter/ext/ext-base.js"></script>
<script language="javascript" type="text/javascript" src="/js/ext-3/ext-all-debug.js"></script>
<script language="javascript" type="text/javascript" src="/servicebus/Api.cfm"></script>
<script language="javascript" type="text/javascript" src="/js/custom/CFQueryReader-ExtJS3-v1.2.min.js"></script>
<script language="javascript" type="text/javascript" src="/js/custom/test-extjs_3.js"></script>
</head>
<body>
<div id="content">
<ul>
<li><a href="/js/custom/CFQueryReader-ExtJS3-v1.2.js" target="_blank">CFQueryReader.js</a> - v1.2 for Ext JS 2 and 3</li>
<li><a href="/js/custom/test-extjs_3.js" target="_blank">test-extjs_3.js</a> - script for this page</li>
</ul><br />
<p>This is a Demo for CFQueryReader with <a href="/js/ext-3/docs/" target="_blank">ExtJS 3.2</a>. ExtJS 3.1 is the version of ExtJS included in fully patched versions of ColdFusion 9, while this custom data reader was tested with each release of ExtJS 2 and 3. There are three stores defined in the script:</p>
<ul>
<li>Standard - The remote method returns a JSON serialized representation of a standard ColdFusion query object.</li>
<li>QueryConvertForGrid - The remote method returns a JSON serialized representation of the struct returned by ColdFusion's <a href="http://www.cfquickdocs.com/cf9/?newVersion=1&getDoc=QueryConvertForGrid#QueryConvertForGrid" target="_blank">QueryConvertForGrid</a> method.</li>
<li>Struct - The remote method returns a JSON serialized representation of a developer defined ColdFusion struct, which includes a key containing a ColdFusion query object.</li>
</ul>
<div id="testGrid"></div>
</div>
</body>
</html>