ButtonSet 的自定义标题
如何更改 Google Closure Library goog.ui.DialogButtonSet
的按钮的标题(文本)代码>?
How can I change the caption (text) of the buttons of any ButtonSet
in Google Closure Library goog.ui.Dialog
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来按钮集对象有一个 addButton 函数,该函数将一个对象作为第一个参数: @param {!{key: string, title: string}}
因此,您所要做的就是使用键创建即时对象(按钮背后的数据)和标题(按钮的实际标签)
Looks like buttonset objects have an addButton function, which takes an object as the first parameter: @param {!{key: string, caption: string}}
So, all you have to do is create on-the-fly objects with a key (the data behind the button) and caption (the actual label of the button)
您可以更改默认标题:
You can change default captions: