摘要:
症状如图:上图中,行号列与checkbox 列融合了。解决方法是在datagrid 的 onLoadSuccess 事件中加入如下代码: var opts = $(this).datagrid('options'); if(opts.rownumbers){ ... 阅读全文
摘要:
原文出处:刘哇勇的博客(@刘哇勇)欢迎分享原创到伯乐头条Chrome的开发者工具已经强大到没朋友的地步了,特别是其功能丰富界面友好的console,使用得当可以有如下功效:更高「逼格」更快「开发调试」更强「进阶级的Frontender」Bug无处遁形「Console大法好」console.log大家... 阅读全文
摘要:
英文原文:AngularJS: Factory vs Service vs Provider当你初试 Angular 时,很自然地就会往 controller 和 scope 里堆满不必要的逻辑。一定要早点意识到,controller 这一层应该很薄;也就是说,应用里大部分的业务逻辑和持久化数据都应... 阅读全文
摘要:
打开Nuget,发现又出问题了:未能解析此远程名称:’nuget.org’。在浏览器中输入http://nuget.org会发现是无法打开的。在cmd命令行里输入: nslookup nuget.org 一般也是无法解析到这个域名的ip地址。不过在cmd命令行里输入: nslookup nuget.... 阅读全文
摘要:
现象是在表单中如果显示两列控件,右边的控件是combo,combobox 等右边有按钮的,宽度为100%时,验证不通过的tooltip 显示位置不准确如下图所示打开 jquery.easyui-1.4.1.min.js 大概在 2575行改为var t=$(_1e4); if(t.parent().... 阅读全文
摘要:
ChangeLogBugThe combogrid has different height than other combo components. fixed.datagrid: The row element loses some class style value after calling... 阅读全文
摘要:
$.extend($.fn.tabs.methods,{ allTabs:function(jq){ var tabs = $(jq).tabs('tabs'); var all = []; all = $.ma... 阅读全文
摘要:
(function($){ var buttonDir = {north:'down',south:'up',east:'left',west:'right'}; $.extend($.fn.layout.paneldefaults,{ onBeforeCollapse:func... 阅读全文
摘要:
在onLoadSuccess 中加入如下代码就OK啦$('#dg3').datagrid({ onLoadSuccess:function(data){ if(data.total==0){ var dc = ... 阅读全文
摘要:
将以下脚本保存为 easyui-datagrid-moverow.jsvar DatagridMoveRow = (function($){ function DatagridMoveRow(gridTarget){ this.el = gridTarget; this.$el = $(this.el); this.rowIndex = -1; this.rowsCount = this.$el.datagrid('getData').rows.length; return this; } Datagrid... 阅读全文