上一页 1 2 3 4 5 6 ··· 11 下一页
  2023年5月19日
摘要: { text: '订单金额', dataIndex: 'amount', renderer: function(value){ return Ext.util.Format.number(value, '0.00'); }, summaryType: function(records) { var 阅读全文
posted @ 2023-05-19 12:08 wakaka_wka 阅读(43) 评论(0) 推荐(0) 编辑
  2023年5月14日
摘要: gc.getView().getHeaderCt().columnManager.getHeaderByDataIndex('IsUsing').addCls('edmodecol');若要移除则使用:removeClscss:.edmodecol{ color:red; } 阅读全文
posted @ 2023-05-14 18:07 wakaka_wka 阅读(43) 评论(0) 推荐(0) 编辑
  2023年3月1日
摘要: %windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i. 阅读全文
posted @ 2023-03-01 13:45 wakaka_wka 阅读(0) 评论(0) 推荐(0) 编辑
  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 阅读(13) 评论(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:10 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:11 wakaka_wka 阅读(11) 评论(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:15 wakaka_wka 阅读(19) 评论(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:53 wakaka_wka 阅读(277) 评论(0) 推荐(0) 编辑
  2022年10月17日
摘要: 在HttpWebRequest前设置代码 ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtoco 阅读全文
posted @ 2022-10-17 12:30 wakaka_wka 阅读(243) 评论(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 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页