DHTMLX Grid : Passing parameters to the loadXML() and some q

Hi,

I have a query that whether can I pass more than one parameter to the loadXML().

What is the maximum limit that we can give ?



I have written something like this : :

mygrid.loadXML(Gpath+"/fundClassDetails.action?shareclass=asdfasdf"+shareclass+"&cusip="+cusip+"&classinceptiondate="+classinceptiondate+"&classnumber="+classnumber+"&status="+status);

_________________________________________________________________________________________________



Also what parameter can be passed to init();





What is the maximum limit that we can give ?
There is no any limitation on script level - you can add as many parameters as necessary, but the browser and server side software limit length of used URI to few kbs.
If you need to send a lot of data you can use post instead of get
    dhtmlx.com/docs/products/kb/inde … =grid.post

Also what parameter can be passed to init();

In current version of grid , init method will ignore any parameters. This command just render grid based on defined configuration.