上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
  2022年8月3日
摘要: gc.addDocked(new Ext.Toolbar({ items: [ { xtype: 'button', text: 'Test add docked' } ]}), 0); 阅读全文
posted @ 2022-08-03 18:22 wakaka_wka 阅读(11) 评论(0) 推荐(0) 编辑
  2022年7月26日
摘要: allowExponential: false Ext.application({ name : 'Fiddle', launch : function() { Ext.create('Ext.form.Panel', { title: 'On The Wall', width: 300, body 阅读全文
posted @ 2022-07-26 17:02 wakaka_wka 阅读(203) 评论(0) 推荐(0) 编辑
  2022年4月25日
摘要: panel.getEl().show()/hide()/toggle() 阅读全文
posted @ 2022-04-25 11:59 wakaka_wka 阅读(108) 评论(0) 推荐(0) 编辑
摘要: gc.getDockedItems("toolbar");//会返回顶部工具条和底部分页条 对返回的结果再判断其dock: "top"还是dock: "bottom" 来区分是顶部还是底部 阅读全文
posted @ 2022-04-25 11:31 wakaka_wka 阅读(21) 评论(0) 推荐(0) 编辑
  2022年4月22日
摘要: tr.x-grid-row.x-grid-row-over td{ background-color: yellow; } tr.x-grid-row-alt.x-grid-row-over td{ background-color: red; } 阅读全文
posted @ 2022-04-22 18:00 wakaka_wka 阅读(47) 评论(0) 推荐(0) 编辑
摘要: .x-grid-item-selected { background-color: bisque; } 阅读全文
posted @ 2022-04-22 17:58 wakaka_wka 阅读(33) 评论(0) 推荐(0) 编辑
  2022年4月18日
摘要: https://www.cnblogs.com/liuxianan/p/js-excel.html DEMO: http://demo.haoji.me/2017/02/08-js-xlsx/ 阅读全文
posted @ 2022-04-18 11:54 wakaka_wka 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1 function printString(n){ 2 let arr = []; 3 let i = 0; 4 5 // Step 1: Converting to number assuming 6 // 0 in number system 7 while (n) { 8 arr[i] = 阅读全文
posted @ 2022-04-18 11:38 wakaka_wka 阅读(96) 评论(0) 推荐(1) 编辑
  2022年4月15日
摘要: declare @Lng decimal(18,6)=114.059920--经度declare @Lat decimal(18,6)=22.544884--纬度 declare @GPSLng decimal(18,6)=114.056300--经度declare @GPSLat decimal( 阅读全文
posted @ 2022-04-15 23:23 wakaka_wka 阅读(254) 评论(0) 推荐(0) 编辑
  2022年3月29日
摘要: declare @tb table(F1 nvarchar(50),Gp nvarchar(50))insert into @tb(F1,Gp)select 'a','A' union select 'a1','A' union select 'b','B' union select 'c1','c 阅读全文
posted @ 2022-03-29 15:58 wakaka_wka 阅读(159) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页