上一页 1 2 3 4 5 6 7 ··· 12 下一页
  2023年2月13日
摘要: gridPanel.getView().bufferedRenderer.disabled = true; var gridPanel = Ext.create('Ext.grid.Panel', { ... bufferedRenderer: false, ... }); gridPanel.ge 阅读全文
posted @ 2023-02-13 14:55 wakaka_wka 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Ext.getStore('MyStore').on('datachanged', function(store) { console.log('The number of visible records has changed:', store.getCount());}); 阅读全文
posted @ 2023-02-13 14:09 wakaka_wka 阅读(20) 评论(0) 推荐(0) 编辑
  2022年11月4日
摘要: var myGrid = Ext.Create('Ext.grid.Panel', { renderTo: 'shrGrid', renderTo: myGrid, store: myStore, //JSON object columns: myGrid.columns, //JSON objec 阅读全文
posted @ 2022-11-04 10:10 wakaka_wka 阅读(12) 评论(0) 推荐(0) 编辑
  2022年10月20日
摘要: 统是Centos7. 一、创建一个任务文件 1、命令行输入crontab -e会自动打开一个空文件: 比如输入以下内容: SHELL=/bin/bashPATH=/sbin:/bin:/usr/sbin:/usr/bin 0 0,12 * * * certbot renew --quiet 二、保存 阅读全文
posted @ 2022-10-20 16:14 wakaka_wka 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 安装 先安装 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 阅读(306) 评论(0) 推荐(0) 编辑
  2022年10月17日
摘要: 在HttpWebRequest前设置代码 ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtoco 阅读全文
posted @ 2022-10-17 12:29 wakaka_wka 阅读(264) 评论(1) 推荐(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 阅读(16) 评论(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 阅读(943) 评论(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 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页