Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable filtering for a specific column in UI-Grid

I have a column in my grid which is contains several buttons. I want to only disable the filtering feature in that column.

For example, filtering should be available in office phone but It has to disable in Actions column. I want to remove the textbox in Actions column.

enter image description here

like image 710
Mahdi Avatar asked Sep 10 '15 15:09

Mahdi


1 Answers

You can set enableFiltering:false on the Actions field

for example:

 { 
      field: '', enableFiltering: false
 }
like image 92
ram hemasri Avatar answered Oct 26 '22 07:10

ram hemasri