摘要:参照网址:http://www.spket.com/extjs.htmlCreate JavaScript profile for Ext 4.xDownload Ext 4.x, unzip it,do not delete thesrcfolder..Select the menu itemWindow > Preferences...to open the workbench preferences.Select theSpket > JavaScript Profilepreference page to display the installed JavaScript P
阅读全文
摘要:xtype 类------------- ------------------box Ext.BoxComponentbutton Ext.Buttoncolorpalette Ext.ColorPalettecomponent Ext.Componentcontainer Ext.Containercycle Ext.CycleButtondataview Ext.DataViewdatepicker Ext.DatePickereditor Ext.Editoreditorgrid Ext.grid.EditorGridPanelgrid Ext.grid.GridPanelpaging
阅读全文
摘要:ExtJs取系统时间就和JS一样:var myDate = new Date(); // 得到系统日期myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表1月)myDate.getDate(); //获取当前日(1-31)myDate.getHours(); //获取当前小时数(0-23)myDate.getMinutes(); //获取当前分钟数(0-59)myDate.getSeconds(); //获取当前秒数(0-59
阅读全文