单击 Ext-js 表单的按钮时显示不同的消息

发布于 2024-12-08 03:59:31 字数 408 浏览 1 评论 0原文

我正在使用 ext-js 开发一个表单。我已经添加了按钮。通过单击保存按钮,它会显示消息,要求确认有 2 个按钮“确定”和“保存”。但我不知道如何为这两个不同的按钮提供不同的消息。这是我的代码

 buttons: [
 {

   text: 'Save',
   handler:function()
   {
       Ext.Msg.show({
       title:'Confirmation',
       msg: 'Press OK if u want to Contine otherwise Press Cancel to Exit',
       buttons: Ext.Msg.OKCANCEL
       //There are buttons added
    }); 
   }   
 }, 
 }]

I m developing a form using ext-js. I hve added buttons. by clicking the save button it shows msg asking for the confirmation having 2 buttons ok and save. But i m nt getting how to give different message for these two different buttons. Here is my code

 buttons: [
 {

   text: 'Save',
   handler:function()
   {
       Ext.Msg.show({
       title:'Confirmation',
       msg: 'Press OK if u want to Contine otherwise Press Cancel to Exit',
       buttons: Ext.Msg.OKCANCEL
       //There are buttons added
    }); 
   }   
 }, 
 }]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅 2024-12-15 03:59:31

您可以创建一个消息框组件并根据需要配置它,而不是 ext.Msg.show。

var messageBox = new Ext.MessageBox({
            buttonText: {
                ok : 'other Ok',
                cancel: 'other cancel'
            }
        });

然后显示组件

messageBox.show({
       title:'Confirmation',
       msg: 'Press OK if u want to Contine otherwise Press Cancel to Exit',
       buttons: Ext.Msg.OKCANCEL
       //There are buttons added
    }); 

请注意,按钮 id 仍然可以并取消..

instead of an ext.Msg.show you can create a messagebox component and configure it as you want.

var messageBox = new Ext.MessageBox({
            buttonText: {
                ok : 'other Ok',
                cancel: 'other cancel'
            }
        });

and then show the component

messageBox.show({
       title:'Confirmation',
       msg: 'Press OK if u want to Contine otherwise Press Cancel to Exit',
       buttons: Ext.Msg.OKCANCEL
       //There are buttons added
    }); 

Note that the buttons id's will still be ok and cancel..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文