views:

361

answers:

1

Hi guys,
I have a problem with jqGrid when I'm using the options specified. Seems that nothing happens when I click 'Find'.
From jqGrid documentation I understand that sorting and searching is done locally when using loadonce option. Sorting is fine but search not, should it work locally or just server side, if so how to do that?

Thanks
Ovidiu

A: 

According to the Search Configuration section of the jqGrid documentation:

Currently we do not have module for searching on local data i.e when a datatype options is set to local. All the searching is done server side.

So you will need to implement search using a server-side data source. You should be able to follow the examples on the jqGrid site to put at least a first-cut of this together.

Justin Ethier