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.
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
})