Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 disabled 属性禁用组合框组件,但它不起作用。代码如下:
xtype: 'bkl.exchange.ExchangeRFCombo', disabled: true, fieldLabel: 'Exchange', id: 'exchMapee', valueField: 'omsMappingCode', editable: false
该模式是远程的,而不是本地的。所以组合框显示的值来自数据库。这个问题有解决方案吗?
非常感谢您的帮助。
谢谢你。
您可以将其添加到组合框中:
listeners: { 'afterRender': function () { this.disable(); } }
这将在渲染后禁用该框。