<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: Version 4.0.0: OnExpand Event</title>
	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>chait on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p26238</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p26238</guid>
        	        	<description><![CDATA[<p>Hi Oleg,</p>
</p>
<p>Even I have the similar problem. I am using local data. In my case&#8230;When I click on expand/collapse icon, first I need to send a request to server, then refresh treegrid dataset with the server&#39;s response and then call treeGrid&#39;s expandRow.</p>
</p>
<p>How can I call a method(I mean override treeGrid&#39;s expandRow method) which does the abve things before calling treeGrid&#39;s expandRow method?</p>
</p>
<p>Thanks in advance,</p>
<p>Chaitu</p>
]]></description>
        	        	<pubDate>Wed, 28 Mar 2012 09:44:26 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23361</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23361</guid>
        	        	<description><![CDATA[<p>Ohhh, Chico!!!</p>
<p>It seems to me you are master to make simple things complex. Sorry!</p>
<p>The problem is that Tree Grid is implemented to support only remote <strong>data: datatype:"json"</strong> and <strong>treedatatype: "json"</strong>. The "local" datatype is not full supported. For example you can&#39;t fill the tree grid using <strong>datatype:"local"</strong>, <strong>treedatatype: "local"</strong> and <strong>data:this.Data</strong>. There are a workaround if you use <strong>addJSONData</strong>, but it is the workaround only and not real the main way implemented by design.</p>
<p>So I recommend you to change your code and use the <strong>url</strong> parameter of jqGrid. jqGrid will get asynchronous requests to the server and fill the jqGrid contain with the server resonse. In the case you will have no problems and on the node expanding a new request to the server with additionally parameters, which describes the current node, will be send to the server.</p>
<p>If needed you can use <a href="/jqgridwiki/doku.php?id=wiki:retrieving_data#jsonreader_as_function" target="_blank">functions in the jsonReader</a>.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Fri, 27 May 2011 10:44:27 +0300</pubDate>
        </item>
        <item>
        	<title>Chico80 on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23346</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23346</guid>
        	        	<description><![CDATA[<p>Example code:</p>
<p>I have a js class ClientExtendedgrid:</p>
<p>function ClientExtendedTree() {</p>
<p>var _ = this;</p>
<p>this.jqGridDiv = null;</p>
<p>... //More Properties</p>
<p>this.Init = function() {</p>
<p>&#160;&#160;&#160;&#160;&#160; this.jqGridDiv.jqGrid(<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: "local",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; data: this.Data,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames: this.ColumnNames,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; colModel: this.ColumnModel,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; height: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: this.SortName,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; treeGrid: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; treeGridModel: &#39;adjacency&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; treedatatype: "local",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ExpandColumn: this.ExpandColumn,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: "Sample Tree View Model",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; altRows: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; autowidth: this.AutoWidth,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; forceFit: this.ForceFit,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; shrinkToFit: this.ForceFit,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: this.RowsPerPage,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowList: this.RowList,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ExpandColClick: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; onSelectRow: function(id) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .....<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; onCellSelect: function(rowid, iCol, cellcontent, e) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });</p>
<p>}</p>
<p>.... //More Funktions</p>
<p>}</p>
</p>
<p>The function onSelectRow hast the following content:</p>
<p>setTimeout(function() {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var recordInfo = _.jqGridDiv.getLocalRow(id);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (!recordInfo.loaded) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var param = { &#39;key&#39;: _.Key, &#39;id&#39;: id };<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; GlobalFunctions.LoadJSONDataAsync(&#39;[Some .NET Assembly]&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#39;[.NET Class]&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#39;[Method to query JSON data]&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; param,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; function(result) { //OnSuccess<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var data = JSON.parse(result);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (var i = data.length - 1; i &#62;= 0; i--) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (var j = 0; j &#60; _.Data.length; j++) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (_.Data[j].id == data[i].parent) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; _.Data.splice(j + 1, 0, data[i]);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; j = _.Data.length;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; _.Clear();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; _.jqGridDiv[0].addJSONData({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; total: 1,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; page: 1,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; records: _.Data.length,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rows: _.Data<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; });<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
</p>
<p>If I had an event onExpand I could load the data beofre expanding, so the data is loaded when I click into the row,<br />but not when I click the expand symbol.</p>
</p>
<p>It is pretty much code I posted, that&#180;s why I did not do this in my previous post, but I hope now you can understand me!</p>
</p>
<p>Greets</p>
<p>Chico</p>
]]></description>
        	        	<pubDate>Thu, 26 May 2011 17:22:18 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23318</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23318</guid>
        	        	<description><![CDATA[<p>Hello Chico,</p>
<p>Sorry, but I don&#39;t understand what you do. Which "data array" and how you update? What you do inside of onSelectRow event (onRowSelected event not exist)?</p>
<p>I hate if one explains about the program instead of just posting the code. The code say what you do and the explanation say only what you want to do.</p>
<p>There are many possibility to solve you problem. For example you can use postData parameter to send edditional (also absolutely dynamic) informations to the server of you can change any time the value of <strong>url</strong> parameter of jqGrid. The event onCellSelect is one more event which can be helpful for you. If all this gives you not what you need you can find "div.treeclick" elements unbind the original onclick event handler and bind you own one (see <a href="https://github.com/tonytomov/jqGrid/blob/v4.0.0/js/grid.treegrid.js#L78" target="_blank">here</a>).</p>
<p>The main problem is that I don&#39;t really understand your problem and so it&#39;s difficult for me to recommend you somthing, because some more simple thing probably can solve your problem.</p>
<p>Best regards<br />Oleg</p>
]]></description>
        	        	<pubDate>Wed, 25 May 2011 16:02:47 +0300</pubDate>
        </item>
        <item>
        	<title>Chico80 on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23316</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23316</guid>
        	        	<description><![CDATA[<p>Hello Oleg,</p>
</p>
<p>thanks for your answer, I know this. functionality.<br />But I do not have the option to pass an URL, I have to query my data by an jQuery AJAX Request.</p>
<p>I pass the parent ID and get some JSON data. On client side I am updating the data array.<br />It is working if I use the onRowSelected event, but I do not retrieve an event clicking on the expand symbol.</p>
<p>I hope you can understand my problem, it is by design of our complete architecture.</p>
<p>Greetz<br />Chico</p>
]]></description>
        	        	<pubDate>Wed, 25 May 2011 15:06:28 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23311</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23311</guid>
        	        	<description><![CDATA[<p>Hello Chico80,</p>
<p>what you asked is already the default behavior of the Tree Grid. If the user expanding the tree node it will be additional request to the server will be send where three additional parameters will be send: <strong>nodeid</strong>, <strong>parentid</strong> and <strong>n_level</strong>&#160;(see <a href="/jqgridwiki/doku.php?id=wiki:adjacency_model&#38;s[]=nodeid#what_we_post" target="_blank">the documentation</a>). So if the server response on such requests with the child notes all will works like you as want.</p>
<p>You should be carefull on the server to response with the correct data (see <a href="http://stackoverflow.com/questions/5862336/jqgrid-autoloading-treegrid-issue/5867537#5867537" target="_blank">this answer</a> which describes which effects you can has on wrond response). If you want you can mark some tree nodes as "static", so only the previous loaded data about the child nodes will be used. To do this you should just include <strong>loaded:true</strong> property for the tree node.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Wed, 25 May 2011 11:05:20 +0300</pubDate>
        </item>
        <item>
        	<title>Chico80 on Version 4.0.0: OnExpand Event</title>
        	<link>http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23309</link>
        	<category>TreeGrid</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/treegrid/version-4-0-0-onexpand-event#p23309</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>is it planned to include an event "OnExpand" in future?</p>
<p>I load the nodes into the tree using ajax requests to an ASP.NET Server, and in order to<br />load the child-nodes on demand I need this event.</p>
</p>
<p>Greets</p>
<p>Chico80</p>
]]></description>
        	        	<pubDate>Wed, 25 May 2011 08:56:46 +0300</pubDate>
        </item>
</channel>
</rss>