So, up until now we have setup our support files and written our paging query service. Now it's time to begin tying our data to our DataGrid. The Ext library provides you many different ways of pulling in data into the components. We're going to create a data 'Store' using a combination of the HttpProxy (a utility for pulling data from within the same domain) and the XmlReader (for parsing our returned datasets).
A 'Store' is "a client side cache of Ext.data.Record objects which provide input data for widgets." Basically you create this representation of your server side data by defining where it is and what it looks like. We're using the HttpProxy, in this case, because our service script (pagingService.cfm) resides within the same domain as our calling page. And, since we set our service script to return an XML document, we need the XmlReader to 'map' the data that we need.
First we'll setup the basic block
2
3});
Add in the location of our service script
2 // load using HTTP
3 proxy: new Ext.data.HttpProxy({url: 'http://cc.mytestserver.loc/jTesting/xmlSqlTest.cfm'}),
4
5});
Then we set up our XML 'reader'
2 // load using HTTP
3 proxy: new Ext.data.HttpProxy({url: 'http://cc.mytestserver.loc/jTesting/xmlSqlTest.cfm'}),
4
5 // the return will be XML, so lets set up a reader
6 reader: new Ext.data.XmlReader({
7 // records will have an "T4" tag
8 record: 'T4',
9 id: 'ID',
10 totalRecords: "recCount"
11 }, [
12 // set up the fields mapping into the xml doc
13 'vcFirstName', 'vcLastName', 'bIsAdministrator','bIsActive','tsDateLastLogin'
14 ]),
15
16});
Ok, here is where I have to put on the breaks for a minute. You have to understand a little about what the reader requires here. It helps if you take a look at a return recordset from your service script. I suggest you call it in Firefox for a nice representation, but basically it looks something like this:
2 <T4>
3 <recCount>5802</recCount>
4 <ID>2350</ID>
5 <vcFirstName>Robin</vcFirstName>
6 <vcLastName>Williams</vcLastName>
7 <bIsAdministrator>0</bIsAdministrator>
8 <bIsActive>1</bIsActive>
9 <tsDateLastLogin>2007-05-01T14:34:57</tsDateLastLogin>
10 </T4>
11 <T4>
12 <recCount>5802</recCount>
13 <ID>4027</ID>
14 <vcFirstName>Howie</vcFirstName>
15 <vcLastName>Mandel</vcLastName>
16 <bIsAdministrator>0</bIsAdministrator>
17 <bIsActive>1</bIsActive>
18 <tsDateLastLogin>2007-04-29T16:29:33</tsDateLastLogin>
19 </T4>
20 ...
21</userList>
You see, looking at the XML, that each record is denoted by the 'T4' node, which we have mapped in our reader to the 'record' attribute. You'll also note that the 'id' attribute was mapped to the 'ID' node in the XML document. This is a unique identifier within each record. We mapped 'totalRecords' to the 'recCount' node, as this is where we set up in our script to place the total record count, and then you see a basic comma delimited list of the nodes that will be included in our DataGrid.
It's important to note here that we have used a very basic XML return for our example here. You do have the power to map values from XML attributes and nested nodes, through the use of XPath syntax. You can even rename a 'field' when identifying a mapping. Look through the examples included in the ExtJS download to get a better idea of what you might be able to do.
OK, to finish our DataStore definition we're going to specify the ability to 'remotely' sort our data, and set up our default sort column and sort order.
2 // load using HTTP
3 proxy: new Ext.data.HttpProxy({url: 'http://cc.mytestserver.loc/jTesting/xmlSqlTest.cfm'}),
4
5 // the return will be XML, so lets set up a reader
6 reader: new Ext.data.XmlReader({
7 // records will have an "T4" tag
8 record: 'T4',
9 id: 'ID',
10 totalRecords: "recCount"
11 }, [
12 // set up the fields mapping into the xml doc
13 'vcFirstName', 'vcLastName', 'bIsAdministrator','bIsActive','tsDateLastLogin'
14 ]),
15 // turn on remote sorting
16 remoteSort: true
17});
18ds.setDefaultSort('vcLastName', 'desc');
And so begins our scripting for creating our DataGrid. The big "gotchas" that hit me along the way were the stupid things. Mis-identifying my 'record' mapping, or missing a trailing comma. Firebug and the JavaScript Console (Firefox) are your friends.
Next round we'll define our ColumnModel. This is how we'll define the order of initial column display, define column headings, and really button up the initial details before fine tuning our layout.


#1 by Yash on 7/7/07 - 2:40 AM
#2 by help on 7/18/07 - 4:18 PM
I would love a basic example getting data from a query to xml to a datagrid in coldfusion. Extjs looks great but no help with coldfusion.
<cfquery datasource="test" name="userslist">
select firstname,lastname,title,email
from tblaccountsdata
order by lastname
</cfquery>
<cfxml variable="mydoc">
<user>
<cfoutput query="userlist">
<name>
<first>#firstname#</first>
<last>#lastname#</last>
<title>#title#</title>
<email>#email#</email>
</name>
</cfoutput>
</user>
</cfxml>
<cfoutput>#mydoc#</cfoutput>
How do i get this into a datagrid...New to CF please bear with me :)
#3 by Cutter on 7/20/07 - 9:50 AM
#4 by marimuthu on 10/4/07 - 9:41 AM
#5 by Noel Luneau on 12/6/07 - 10:05 PM
Are you intending to refresh this for CF8?
And do you have an example of this file that you feference:
xmlSqlTest.cfm
Thank you,
Noel
#6 by Cutter on 12/7/07 - 6:24 AM
I will have some new tutorials coming soon, some dealing with the new CF8 Ajax Data features.
#7 by sathish on 1/31/08 - 3:46 AM
I want to display the tag value..
Thanks
#8 by Steve 'Cutter' Blades on 2/4/08 - 9:50 PM
#9 by Steve 'Cutter' Blades on 2/4/08 - 9:52 PM
#10 by taochenpfj on 3/16/08 - 4:06 AM
i am a chinese!Thanks a lot!
#11 by aelxx on 4/14/08 - 6:49 AM
#12 by pravidya on 8/29/08 - 4:37 AM
The reason I want to do this is because on IE6 it does not show up properly. The drop down list appears blank.
#13 by Steve 'Cutter' Blades on 8/29/08 - 8:46 AM
I am surprised you are getting a blank list. Are the 'header' attributes set in your column model?
#14 by Robert Kovacs on 9/12/08 - 7:33 AM
Is it possible to either:
maike several requests via several Ext.data.Store so that you can update the data in more than one grid?
OR
make a single request which returns json data for mor than one grid?
I have a grid of occupants and a grid of doors both of which shoul dbe updated when selecting different rooms....
#15 by Keith Howell on 4/29/09 - 6:11 PM
I have searched the web and this forum extensively and cannot seem to
come up with an answer to the issue that I am having. I have a CF8
generated grid that I would like to have a mask with ... Loading show when
the grid loads and when the grid pages/refreshes. I have found many
examples of generating the grid with the extjs library but none with
a cf generated grid and then having a extjs function go back and
set the mask. I have been able to get the message to show on load, but
it does not disappear when the page finishes loading and also
does not show when paging occurs.
HELP PLEASE!
#16 by Steve 'Cutter' Blades on 4/29/09 - 7:51 PM
Setting the loading mask in the config (which you can't do in CF anyway) never worked right with Ext 1.x. If the loading mask is required, you'll want to write your grid in straight Ext 2.2.
#17 by Keith Howell on 4/30/09 - 3:17 PM
Thanks for the help. I am fairly new to extjs but have been working with
CF for about 5 years now so I think I will try your suggestion and that
should be a good way to learn it.
.. One more question though. I am using extjs to change my grid
after it has been rendered by cf (changing column names and making
some columns hidden). This seems to really slow down my application
when this code runs. Besides building the grid in extjs completely, is
there anything that I can do to speed up the "re-rendering" of the columns?
(From what I can tell, I have 55 columns in the grid and each one
is set to hidden or not and named in my ectjs function. It seems like
each time the setHidden and setColumnName functions is running
it is re-rendering the grid... so it must be running 55 times??)
#18 by DemonWitch on 10/10/10 - 5:58 PM
#19 by Steve 'Cutter' Blades on 10/11/10 - 10:01 AM
http://dev.sencha.com/deploy/dev/examples/
#20 by DemonWitch on 10/11/10 - 10:49 AM