导航

06 2019 档案

摘要:JS: 如果在同步执行进程中有可能无法显示,这时可以使用 var a = function(){ } var b = function(){ } C#: 阅读全文

posted @ 2019-06-26 09:47 yiyishuitian 阅读(363) 评论(0) 推荐(0)

摘要:JS : HTML: C#: Example 阅读全文

posted @ 2019-06-19 09:31 yiyishuitian 阅读(147) 评论(0) 推荐(0)

摘要:HTML 放在Listeners 中的这些方法为 JS方法。 一些JS方法参数:https://examples.ext.net/#/Events/Listeners/Arguments/ 一些 Direct Method 调用时的参数及option: https://examples.ext.ne 阅读全文

posted @ 2019-06-19 09:25 yiyishuitian 阅读(400) 评论(0) 推荐(0)

摘要:解决方法:EXCEL--选项--高级--剪切、复制和粘贴中,勾选“粘贴内容时显示粘贴选项按钮,就可以重新调出自动填充选项 阅读全文

posted @ 2019-06-17 10:33 yiyishuitian 阅读(3603) 评论(1) 推荐(1)

摘要:1 设置字体颜色 2 设置cell背景色 注意如果使用 var template = '<div style="background:{0};">{1}</div>'; 只会让字体所在的背景变色,不会让整个CELL变色。 如果让整个CELL变色,要使用 metadata.style = "backg 阅读全文

posted @ 2019-06-14 09:33 yiyishuitian 阅读(464) 评论(0) 推荐(0)

摘要:1 DataTable 转为 Linq 可查询对象(LINQ 查询:SQL Server 数据库、XML 文档、ADO.NET 数据集以及支持 IEnumerable 或泛型 IEnumerable<T> 接口的任何对象集合。) 2 使用 Skip Take 进行分页 3 分页结果集IEnumera 阅读全文

posted @ 2019-06-13 10:59 yiyishuitian 阅读(403) 评论(0) 推荐(0)

摘要:https://examples.ext.net/#/MessageBox/Basic/Overview/ 1. Confirm C#: HTML: JS: 2. Prompt HTML: JS: C#: 3. Multi-line Promp 4. Yes/No/Cancel 5. Progres 阅读全文

posted @ 2019-06-12 08:49 yiyishuitian 阅读(302) 评论(0) 推荐(0)

摘要:public void MyFunction() { X.Msg.Confirm("Message", "It'OK??", new MessageBoxButtonsConfig { Yes = new MessageBoxButtonConfig { Handler = "CompanyX.It_s_OK()", ... 阅读全文

posted @ 2019-06-11 15:43 yiyishuitian 阅读(130) 评论(0) 推荐(0)

摘要:EXT 上传上文件成功,一旦上传稍大文件(10M)就失败。 FileUploadField1.PostedFile.SaveAs(FullPath); 解决方法: 设置web.config 阅读全文

posted @ 2019-06-11 14:38 yiyishuitian 阅读(468) 评论(0) 推荐(0)