combo/multicombo with large number of options

As you can see in this snippet:

https://snippet.webix.com/yz20vf2m

when we have a combo (and even more in a multicombo) with a large number of options, it becames very slow to render the suggest list and to make any action on it.
Is there any way to make it quicker?

Hello, @AndreaC

The problem with big data rendering delay is connected with the dynamic rendering in the List is switched off by default. So the solution is to make it possible to render data dynamically. It’s possible to perform with list dynamic property

Here is the snippet:
https://snippet.webix.com/o37h2hgb

Thank you @AlenaLisava , this is perfect!