Datatable Filter Issue

hello webix team,

Please refer below snippet.
https://snippet.webix.com/jjv4btz2

Here, I want to filter datatable on mouse right click’s paste option. How can I do this? Please provide solution for the same.

Thanks.

Hi! there is no onPaste event for Text widget, but you can listen to events of the inner html input.

If you only need filtering on paste (and not other kind of input - typing) and button click, then use “paste” event:

https://snippet.webix.com/y604ioyr

If you also decide to filter on any input (typing and paste), use “input” event:

https://snippet.webix.com/ddg6vsmj

Than you so much for the given solution. But In my case,

  1. Datatable columns are dynamic
  2. I want apply filter for columns of datatable on paste & typing.

For ex. If we paste some text in package column’s filter, then It should return results.

How can I achieve this?

Well, with dynamic loading you should use built-in server filters https://snippet.webix.com/7b2cok26 They work with typing and pasting.
DataTable Filtering of DataTable, Operations with Data Webix Docs