發表文章

目前顯示的是有「技術-ExtJS」標籤的文章

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...

ExtJS- combo& grid

  2. Extjs4.0 設置 Ext.data.Store 傳參的請求方式 https://newgoodlooking.pixnet.net/blog/post/110333223 var Store = Ext.create('Ext.data.Store', {       pageSize: pageSize,       model: 'Ext.data.Model名稱',       autoLoad: false,       proxy: {           type: 'ajax',           url: '請求路徑',           getMethod: function(){ return 'POST'; },//亮點,設置請求方式,默認為GET           reader: {               type: 'json',               root: 'Data',               totalProperty: 'totalCount'           }       },        listeners: {           'beforeload': function (store, op, options) {  ...