By default when we add jQuery("#tableName").jqGrid('filterToolbar'); it is set for all the columns. How can I restrict filtertoolbar option to appear only in one column.
By default when we add jQuery(#tableName).jqGrid(‘filterToolbar’); it is set for all the columns. How
Share
You can use search: false setting for any column where you don’t want that the user search in the column. If you have many columns where you don’t want to search and a few column where you want to search, you can change the default value of
searchproperty tofalsewith respect ofcmTemplate: {search: false}and define explicitlysearch: trueproperty in the columns where you want to permit the searching.