Categories | Question details Back To List | ||
Dynamic TreeGrid: Expand to Node? Hello! I have similiar question as David Hutchings in this topic: http://dhtmlx.com/docs/products/kb/index.shtml?q=3726 Difference is that we use dynamic loading mode. Is there any solution for this problem in dynamic mode? Answer posted by dhtmlx support on Sep 26, 2008 08:14 Only loaded rows can be shown. So, in case of dynamic loading you should use onXLE event handler to open the next item. mygrid.attachEvent("onXLE",function(){ ... }) |