首页 > 代码库 > Segmented Button 的应用
Segmented Button 的应用
Segmented Button 常被用作工具条、导航栏,默认为单选切换,如果想实现多选,只需设置allowMultiple属性为true。
JS:
{ xtype: ‘container‘, items: [{ xtype: ‘segmentedbutton‘, allowMultiple: true, layout: ‘hbox‘, cls: ‘segBtns‘, defaults: { ui: ‘plain‘, cls: ‘btn‘ }, items: [{ text: ‘爱情‘, flex: 1, pressed: true }, { text: ‘事业‘, flex: 1 }, { text: ‘梦想‘, flex: 1 }, ], listeners: { element: ‘element‘, toggle: { fn: function(container, button, pressed) { alert(); } } } } ], }
CSS:
.segBtns .btn{ color: white; border-radius: 0px; background: #0E4A75; } .segBtns .btn.x-button-pressed{ background: yellow; color: red; }
2.在app.json,bootstrap.json中引入自定义css。
Segmented Button 的应用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。