Datagrid: Filter int column as string

I have a grid containing an id-column which is an regular int.
My users always need to input the exact id to find an entry.

I would like to offer them 2 features:

  • search entries which contain parts of their input (eg. type '123' to show every id containing '123')
  • paste characters into the filter-field (like '123 ')

How can I do this?

Hi @Moo,

You can try extending your model with a custom property of type string which maps to the int one. You can check this thread: Calculated fields on the server side - #2 by korchev