scroll bar in combo -> gridsuggest with default value bug

The scroll bar stay at the top of the bar even when the default value isn’t at the start of the list :

But if you use the mouse wheel then the scroll bar works fine again. So the bug is only when you load the page with a default value on the combo field.

Example:
http://webix.com/snippet/06a49b46

We’ll check this out, thanks for reporting. As a workaround, you can use scrollTo method for the first popup appearance:

http://webix.com/snippet/130bde47

Thank,
It works but be careful if you want to select the last element you have to change this line :

table.scrollTo(0, target*rowH);

by

table.scrollTo(0, (target-4)*rowH); //(4 being : yCount-1)

otherwise it doesn’t do anything