ExtJS grid
1.生命週期 & 常見用法 顯示和隱藏 所有的組件都是在show和hide方法中構造的。用來隱藏組件的默認的css方法是“display:none”但是通過hidemode配置的時候就有所變化瞭: var panel = Ext.create('Ext.panel.Panel', { renderTo: Ext.getBody(), title: 'Test', html: 'Test Panel', hideMode: 'visibility' // use the CSS visibility property to show and hide this component }); panel.hide(); // hide the component panel.show(); // show the component https://www.aiwalls.com/javascript%E7%B7%A8%E7%A8%8B%E6%95%99%E5%AD%B8/20/38831.html 2.Grid 介紹 https://wadehuanglearning.blogspot.com/2017/01/ext.html 3. https://blog.csdn.net/liu865033503/article/details/72821372 4. https://developer.aliyun.com/article/685652 5.Java中ExtJs常用控制項配置屬性大全 原文網址:https://kknews.cc/code/mo4kegp.html https://kknews.cc/zh-tw/code/mo4kegp.html **6.gridPanel 詳細介紹 http://yhhuang1966.blogspot.com/2014/06/extjs-4-gridpanel.html 7.extjs 連動 comboBo...