Hi all
How to print alert in dhtmlxgrid loading on a conditional basis
thanks in advance
Hi all
How to print alert in dhtmlxgrid loading on a conditional basis
thanks in advance
If you need to pop up an alert after the grid is loaded you need to add a function into a loadXML() method.
For example:
loadXML(grid.xml, function(){
alert('grid is loaded now!');
});
Hi sematik
thanks for your reply