1
A
回答
6
使用labelSeparator:「」組合框的配置來解決該問題。
請參考下面的例子
Ext.create('Ext.form.ComboBox', {
fieldLabel: 'Choose State',
store: states,
queryMode: 'local',
displayField: 'name',
valueField: 'abbr',
labelSeparator : "",
renderTo: Ext.getBody()
});
感謝,相信它會工作。
相關問題
- 1. ExtJS的FieldLabel聯合在一個tabpanel
- 2. 在ExtJS EditorGridPanel中級聯組合框
- 3. extjs組合框
- 4. ExtJS的設置FieldLabel聯合動態觸發一次
- 5. ExtJS的 - 在組合框
- 6. ExtJS的:在組合框中
- 7. 如何把結腸文本
- 8. WPF +組合框鍵聯結
- 9. 組合框在Extjs 4
- 10. 如何獲取extjs組合框的值?
- 11. ExtJS的組合框的值
- 12. ExtJS的組合框Tranlsated值
- 13. 相關的組合框 - extjs
- 14. 填充組合框的ExtJS
- 15. ExtJS的組合框陣列
- 16. ExtJS的組合框從SQL
- 17. 如何把在datagridview的組合框編程迭代集合
- 18. 如何讓ExtJS組合框與文本內聯顯示?
- 19. ExtJS的4.1如何組合
- 20. fieldLabel in ComboBox Extjs
- 21. 從結合的組合框
- 22. Extjs組合框不更新
- 23. extjs 4 TreeStore和組合框
- 24. ExtJS與組合框分頁
- 25. ExtJS依賴組合框
- 26. ExtJS 4 - 組合框問題
- 27. ExtJS依賴組合框
- 28. 級聯組合框
- 29. 級聯組合框
- 30. 級聯組合框
很酷@mohan – Hariharan