上一页 1 2 3 4 5 6 7 ··· 12 下一页
  2022年10月20日
摘要: 安装 先安装 snapd,使用 snap 安装 certbot 可以隔离环境影响 yum install snapd # 设置为开机启动并立即启动 sudo systemctl enable --now snapd # 建立软链接 sudo ln -s /var/lib/snapd/snap /sn 阅读全文
posted @ 2022-10-20 14:52 wakaka_wka 阅读(288) 评论(0) 推荐(0) 编辑
  2022年10月17日
摘要: 在HttpWebRequest前设置代码 ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtoco 阅读全文
posted @ 2022-10-17 12:29 wakaka_wka 阅读(244) 评论(0) 推荐(0) 编辑
  2022年9月15日
摘要: CSS: .x-column-header-text-inner{ color:red; } JS: $('.x-column-header-text-inner').filter(function(){ return (/启用/i).test($(this).text())}).css('colo 阅读全文
posted @ 2022-09-15 21:26 wakaka_wka 阅读(15) 评论(0) 推荐(0) 编辑
  2022年9月8日
摘要: xtype 类 box Ext.BoxComponent button Ext.Button colorpalette Ext.ColorPalette component Ext.Component container Ext.Container cycle Ext.CycleButton dat 阅读全文
posted @ 2022-09-08 09:32 wakaka_wka 阅读(17) 评论(0) 推荐(0) 编辑
  2022年9月1日
摘要: (function () { let request = ELECTRON.remote.net.request('URL what you want'); request.on('response', function (response) { console.log(response.statu 阅读全文
posted @ 2022-09-01 15:28 wakaka_wka 阅读(924) 评论(0) 推荐(0) 编辑
  2022年8月19日
摘要: select * from syscolumns where ID in (SELECT id FROM sysobjects as a WHERE OBJECTPROPERTY(id, N'IsProcedure') = 1 and id = object_id(N'[dbo].[你的存储过程名] 阅读全文
posted @ 2022-08-19 18:53 wakaka_wka 阅读(18) 评论(0) 推荐(0) 编辑
  2022年8月3日
摘要: gc.addDocked(new Ext.Toolbar({ items: [ { xtype: 'button', text: 'Test add docked' } ]}), 0); 阅读全文
posted @ 2022-08-03 18:22 wakaka_wka 阅读(10) 评论(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 阅读(188) 评论(0) 推荐(0) 编辑
  2022年4月25日
摘要: panel.getEl().show()/hide()/toggle() 阅读全文
posted @ 2022-04-25 11:59 wakaka_wka 阅读(102) 评论(0) 推荐(0) 编辑
摘要: gc.getDockedItems("toolbar");//会返回顶部工具条和底部分页条 对返回的结果再判断其dock: "top"还是dock: "bottom" 来区分是顶部还是底部 阅读全文
posted @ 2022-04-25 11:31 wakaka_wka 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页