更改隐藏的 Ext JS SplitButton 的文本
当我更改隐藏的 Ext JS SplitButton 的文本时,当包含该按钮的面板可见时,该按钮的大小不正确。
该按钮位于面板中。该面板和其他面板使用卡片布局来显示和隐藏。我正在使用 Ext JS 3.3.1。
有什么想法吗?
When I change the text of a hidden Ext JS SplitButton, the button is not sized correctly when the panel containing the button is made visible.
The button sits in a panel. The panel and other panels are shown and hidden using a card layout. I am using Ext JS 3.3.1.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在更改按钮文本后立即执行
panel.doLayout(false, true);
。Try doing
panel.doLayout(false, true);
right after you change the button text.