简体   繁体   中英

Ext.toolbar.Toolbar with overflowHandler scroll to end

Is there any property/config to say that the toolbar, when its overflowting to the right should scroll to the last item? I have a vertical toolbar. And it should scroll to the last item on the right

My config looks like:

var toolbar = Ext.create('Ext.toolbar.Toolbar', {
    cls: 'toolbar',
    dock: toolbarDock,
    border: false,
    overflowHandler: 'scroller',
    items: [this.toolbar]
});

You should add parameter like enableOverflow as true to use overflowHandler .

Check sencha documentation enableOverflow

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM