javascript - Ext.js confirm method add new line character - Stack Overflow

I have a problem about Ext.MessageBox.confirm method. I want to add a new line to confirm message but i

I have a problem about Ext.MessageBox.confirm method. I want to add a new line to confirm message but if i put \n it is not work, if i put html new line br it works but br is shown in message. My methot is shown below. br is inside <>

confirm: function(message, callback) {
    this.localizeExtMessageBox();
    Ext.MessageBox.confirm(this.getLocalizedString(Ab.view.View.z_MESSAGE_CONFIRM), message, callback);
}

How can i do that, thank you.

I have a problem about Ext.MessageBox.confirm method. I want to add a new line to confirm message but if i put \n it is not work, if i put html new line br it works but br is shown in message. My methot is shown below. br is inside <>

confirm: function(message, callback) {
    this.localizeExtMessageBox();
    Ext.MessageBox.confirm(this.getLocalizedString(Ab.view.View.z_MESSAGE_CONFIRM), message, callback);
}

How can i do that, thank you.

Share Improve this question asked Oct 4, 2013 at 12:31 eraraterarat 1662 silver badges9 bronze badges 1
  • Thank you i found solution, if i write [br] it works. – erarat Commented Oct 4, 2013 at 12:39
Add a ment  | 

1 Answer 1

Reset to default 8

Try this:

 Ext.MessageBox.show({
         title: 'my title',
         icon: Ext.Msg.QUESTION,
         msg: 'text here</br> other text in new line?',
         buttonText: { yes: "Yes", no: "No" },
         fn: function (btn) {
           if (btn == 'yes') {
            //your realization
           }
         }
       }
     });

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

相关推荐

  • javascript - Ext.js confirm method add new line character - Stack Overflow

    I have a problem about Ext.MessageBox.confirm method. I want to add a new line to confirm message but i

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

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

关注微信