Datatable richselect editor Error issue

Hello webix,
I Have issue/Bug/Error in Datatable editor

  1. I have a several sidebar menu and content page

  2. on page Dashboard i have datatable with editor richselect in column_id “aksi_detail_kategori”

  3. When I’m select Dashboard menu, my script is work fine, but if i select another menu like Documentation Menu, and go back again to Dashboard Menu, my script is error

  4. If I’m disabled/comment column with richselect editor, the script is run normal

Anyone can fix this issue?

https://snippet.webix.com/a0y7gcj7

Thank You Before

Hi, @vickypaulantono
it is not a good idea to reuse the same config object.
as a workaround try to use some config factory.
instead of var cfg = {...}; webix.ui(cfg); try var cfg = ()=>({...}); webix.ui(cfg());
https://snippet.webix.com/hj1c00a3
using webix jet would be better in any case

Thank You it’s work :smiley: