On Dhtmlx Grid component

Hi All



Request you to please help me out. My requirement is if the values are changed in dtabase(some data is inserted or deletedor updated) it should be triggred in grid table dyanamically without pressing refresh button it shud refresh anfd it shud be hilighted.Please hepl me out inthis if any one has code or anything else.



Waiting for your reply





Thanks & Regards



Sarat Sivalenka

The grid is javascript component, which fully client side, so it can’t directly connect to DB and monitor changes, you will need to implement some “queuing” mechanic.
For example you can call time to time the next command
    grid.updateFromXMl(url);

This command will fetch xml from server side URL, which will contain data for new or upated rows.
In case of pro package please check samples/pro_refresh.html