javascript - Ext.MessageBox.confirm custom buttons - Stack Overflow

Is it possible to add custom buttons to the Ext.MessageBox.confirm. By custom I mean custom text and cu

Is it possible to add custom buttons to the Ext.MessageBox.confirm. By custom I mean custom text and custom number of buttons...

Ext.MessageBox.confirm('Delete', 'Are you sure ?', 

function(btn){
   if(btn === 'yes'){
      return true;
   }
   else{
      return false;
   }
 });

Is it possible to add custom buttons to the Ext.MessageBox.confirm. By custom I mean custom text and custom number of buttons...

Ext.MessageBox.confirm('Delete', 'Are you sure ?', 

function(btn){
   if(btn === 'yes'){
      return true;
   }
   else{
      return false;
   }
 });
Share Improve this question asked Dec 10, 2015 at 7:08 JacobJacob 4,03123 gold badges91 silver badges151 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 14

Try setting the buttonText, like:

Ext.MessageBox.show({
        title: 'Delete',
        message: 'Are you sure ?',
        width: 300,
        buttons: Ext.Msg.YESNO,
        buttonText: {
            yes: 'Yesssss!!!',
            no: 'Nooo!!!'
        }
    }); 

Example: https://fiddle.sencha./#fiddle/12bq

Try using below

Ext.Msg.show({ 
  title: 'Enter Message', 
  msg: null, 
  buttons: [{ 
    itemId: 'ok',  
    text: 'Send',   
    ui: 'action' 
  }, {
    itemId: 'cancel',   
    text: 'Cancel'    
  }], 
  prompt: {   
    maxlength: 180,   
    autocapitalize: false
  },   
  fn: function(text,btn) {
    // do some stuff
  }  
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743591135a4475689.html

相关推荐

  • javascript - Ext.MessageBox.confirm custom buttons - Stack Overflow

    Is it possible to add custom buttons to the Ext.MessageBox.confirm. By custom I mean custom text and cu

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信