2016-08-12 1 views
0

Как установить значок для SegmentedButton с Secha Прикоснитесь 2.0.2Как установить значок в SegmentedButton с пользовательским интерфейсом Secha Touch?

var segmentedButton = new Ext.SegmentedButton({ 
 
    allowMultiple: true, 
 
    items: [ 
 
     { 
 
      text: 'Option 1', 
 
     }, 
 
     { 
 
      text : 'Option 2', 
 
      pressed: true 
 
     }, 
 
     { 
 
      text: 'Option 3' 
 
     } 
 
    ], 
 
    listeners: { 
 
     toggle: function(container, button, pressed){ 
 
      console.log("User toggled the '" + button.text + "' button: " + (pressed ? 'on' : 'off')); 
 
     } 
 
    } 
 
}); 
 
Ext.Viewport.add({ xtype: 'container', padding: 10, items: [segmentedButton] });

enter image description here

так: enter image description here

Любой знает, как сделать это? это лучше делать с SegmentedButton

ответ

Смежные вопросы