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!
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:
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:
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?
Try to define the gridsuggest within the column configuration using suggest
within the popup
:
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?
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:
Works fine, Thanks!