views:

12

answers:

1

Hello All,

I have few hidden fields in my jqGrid on which I have to perform a case insensitive search (may be using regex - not sure). Is it possible? Can someone give me directions on it?

Thanks!

A: 

You should inseart searchhidden option equal to true in the column definition (colModel):

searchoptions:{searchhidden:true}

To make searching case insensitive you cen use jQuery option ignoreCase:true.

Oleg