:: Forum >>

Combo selected item on the first of the list?

I am trying a combo with a long item list. After I select an item, I like this item stay on the top of the list. Is it easy to implement this function?

Thanks,
Monday, April 28, 2008
If you want to scroll the combo/list you have to do it via DOM API -

combo.showPopup1 = combo.showPopup;
combo.showPopup = function(){
    this.showPopup1();
    this.getViewTemplate().element().parentNode.scrollTop = 100;
}
Alex (ActiveWidgets)
Tuesday, April 29, 2008

This topic is archived.


Back to support forum

Forum search