Hi,
Is there a way to tell igGrid to re-get and rebind the data according to specified DataSourceUrl ? I need to filter down the data in igGrid, so I'd like to pass in user input data (in a form) to the DataSourceUrl, and call it manually when user hit Search/Filter button.
Thanks,
Jeffrey
Hi Jeffrey,
Try to use igGrid dataBind method like this:
$(".selector").igGrid("dataBind");
Hope this helps,Martin PavlovInfragistics, Inc.
Martin,
One more question, when using igGrid should we use DataSource or DataSourceURL ? is one better than the other ? I think I read somewhere that remote paging/sorting does not work if the grid does not use DataSourceURL
Thanks
Thanks for the reply..
Is there any way I can pass in parameter to the dataSourceUrl ?
I'm working on a search page, and I'm thinking about getting the search inputs from textboxes using jquery then pass it in to the MVC ActionMethod defined as the DataSourceURL. Or is there a better way to do this ?