Title: auto refresh periodicaly of datagrid Post by: putusundika on July 10, 2012, 10:05:50 AM how can I make grid auto refresh every 15 sec ?
i want to display almost real time list of order update without pressing button regards putu Title: Re: auto refresh periodicaly of datagrid Post by: anton.dutov on July 11, 2012, 11:15:54 AM Quote $(function() { function grid_refresh() { $('tbl_x').datagrid('reload'); // reload grid setTimeout(grid_refresh, 15000); // schedule next refresh after 15sec } $('tbl_x').datagrid({ ... }); grid_refresh(); }); Title: Re: auto refresh periodicaly of datagrid Post by: putusundika on July 12, 2012, 06:24:22 AM awesome :D
thanks regards putu |