带有自定义按钮的 ExtJs 消息框
如何使用自定义按钮显示 ExtJS 消息框。
我想要一个带有自定义消息以及“取消”和“停用”按钮的消息框。 请给一些想法。
buttons: [{
text: "Cancel",
handler: function () {
Ext.MessageBox.hide();
//submitTicketForm();
}
},{
text: "Deactivate",
handler: function () {
Ext.MessageBox.hide();
}
}],
我正在像这样使用它,但没有得到任何按钮。
How to display ExtJS Message box with Custom buttons.
I want a Message box with a Custom message and "Cancel" and "Deactivate" Buttons.
Please give some idea.
buttons: [{
text: "Cancel",
handler: function () {
Ext.MessageBox.hide();
//submitTicketForm();
}
},{
text: "Deactivate",
handler: function () {
Ext.MessageBox.hide();
}
}],
I am using it like this but not getting any buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 ExtJS 4 中,您可以像这样创建自己的组件:
然后:
In ExtJS 4, you can make your own component like this:
then:
MessageBox 是内部管理的窗口的单个实例,用于提示、显示、警报等。
您可以通过传入显示字符串来更改按钮文本,如下所示:
请参阅:
消息框
MessageBox is an single instance of an internally managed Window used for prompt, show, alert, etc.
You can change the buttonText by passing in a string for show like this:
Refer :
MessageBox
使用“buttonText”而不是“button”,
Use 'buttonText' instead of 'button',
在 ExtJS 4 和 ExtJS 5 中,要为按钮设置自定义文本,您需要使用
buttons
和buttonText
配置:In ExtJS 4 and ExtJS 5, to set custom text for buttons you need to use both
buttons
andbuttonText
configs: