单击 Ext-js 表单的按钮时显示不同的消息
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个消息框组件并根据需要配置它,而不是 ext.Msg.show。
然后显示组件
请注意,按钮 id 仍然可以并取消..
instead of an ext.Msg.show you can create a messagebox component and configure it as you want.
and then show the component
Note that the buttons id's will still be ok and cancel..