Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable jqGrid's Search Toolbar for some columns?

Tags:

I have added the search toolbar to my jqGrid and was wondering is there anyway to search certain columns instead of all of them?

By default, the search toolbar shows a search field for every column.

like image 932
Chapp Avatar asked May 24 '11 17:05

Chapp


People also ask

How do I disable jqGrid?

Using BlockUI plugin: http://jquery.malsup.com/block/ Using jqGrid options: loadui and set it to 'block'

How can I improve my jqGrid performance?

You can capture the data with respect of Fiddler or Firebug. Probably you has some datatypes, don't use gridview:true option and use afterInsertRow method which make jqGrid working slower espetially for lagre pages. It can be also that you do many work inside of gridComplete or loadComplete event handler.


1 Answers

If you define search:false property for the column in the colModel the search toolbar will have no input element for the column.

like image 166
Oleg Avatar answered Sep 27 '22 17:09

Oleg