Can I get the data url from dhtmlxGrid?

Hi Sir,

I want to add reload function for grid, this is a gerneral function for the grid, so I want to get the data url to relaod, is this method right? Can I get the data url?

Thanks,
Jack

You may try to use:

url="…/grid_data/data.xml"

grid.load(url);

function reload(){
grid.clearAndLoad(url);
};