Detecting suggest current value focus

Hello there,

Is there a way to detect the current focus value on suggest.

For example on this snippet http://webix.com/snippet/43b6d17d . When I start typing on ‘released’ column the suggested value will be shown, then I press down key and the suggested value will be on focus (highlighted). Is there anyway to get that value?

Thank you…

Suggest contains a list, so you can use any select-related event for it, e.g. onBeforeSelect, onAfterSelect, onSelectChange:

view:"suggest",
body:{
    on:{ onAfterSelect:function(id){ }  }
}

http://webix.com/snippet/855a535a

Wow, what an elegant solution! Thank you…