Gridsuggest in a datatable

Hi, Is it possible to have a gridsuggest inside a datatable?
If yes, could you please give a sample.
If no, could you please suggest some alternate to achieve similar behavior.

Thanks!

Please check the following snippet:

http://webix.com/snippet/29ca7ab7

Awesome…Thanks!

One more question, is there any way to show the selected id in the datatable cell instead of the value.

Without collection:options the editor will apply only the ID:

http://webix.com/snippet/8e82413e

Thanks for the reply!

I was trying to achieve the same in angular, but I get a stack overflow error. Does it require any change for angular?

http://webix.com/snippet/336bebdd

Try to define the gridsuggest within the column configuration using suggest within the popup:

http://webix.com/snippet/f4b8c2f0

Works great, Thanks a lot!

How do I re-fetch data into the gridsuggest from a remote database after the initialization?

Update: I think I got it by updating the config. Thanks anyway

Hi, I’m unable to get filter work with grid suggest. Could you please help?

http://webix.com/snippet/91581373

Hi @Baga,

thefilter property allows redefining filtering logic for the editable inputs (i.e. ui.combo and ui.text). You need to use theonAfterEditStart event to filter the options:

http://webix.com/snippet/d7fe015b

Works fine, Thanks!