Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Alexey on Jan 14, 2010 05:12
open dhtmlx forum
TreeGrid

Hello,
Is it possibility to pass additional parameters on opening node in TreeGrid?
for example I need to pass date chosen in another input field.
Tnx.
Answer posted by Alex (support) on Jan 14, 2010 07:52

Hello,

did you mean dynamic loading in treegrid ?

in this case you can use onDynXLS event and add the parameter to the kidsXmlFile property:

treegrid.attachEvent("onDynXLS",function(rowId){
    this.kidsXmlFile += "?param="+someValue);

    return true

})