0

I am using 'useExternalFiltering' in angular ui-grid. Is it possible to set 1 column to still filter internally (sort out based on the table data)?

orizis
  • 166
  • 2
  • 15

1 Answers1

0

Yes, it is possible. You can set useExternalFiltering: true on the columns that need it and use the normal filtering on the other. (In fact, on the column I use external filtering with in my grids, it also works as a normal filter once the data have been retrieved, but I imagine this could be disabled.)

S. Baggy
  • 950
  • 10
  • 21
  • I need all of my columns to use external filtering, except 1 that should filter internally. I thought there will be an attribute to set on that single column only. Anyway, the external filtering should act on the server data, not the table. Meaning I need to disable the internal filtering on those columns – orizis Aug 11 '16 at 21:54
  • I edited my answer a bit. What I am wondering though is if you have tried it and did it not work to your satisfaction? I have a setup where I mix internal and external filtering and it works fine. – S. Baggy Aug 12 '16 at 02:37