上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页
摘要: $(function () { gridbind(); bindData(); }); //表格绑定function gridbind() { $('#dg').datagrid({ title: '动作管理', iconCls: '', width: fixWidth(1) - 25,// fix 阅读全文
posted @ 2016-09-26 09:17 芜明-追星 阅读(321) 评论(0) 推荐(0) 编辑
摘要: (function ($) { window.XW = {}; //全局系统对象 //异步请求统一调用方法 XW.ajax = function (options, param, callback) { var p = { type: "get", url: null, dataType: "jso 阅读全文
posted @ 2016-09-26 09:14 芜明-追星 阅读(3800) 评论(0) 推荐(0) 编辑
摘要: (function ($) { var $parent = parent.$; //获取弹出窗口数据集合 function getDialogs() { var dialogs = $parent("#div_index_data").data("dialogs"); dialogs = dialo 阅读全文
posted @ 2016-09-26 09:14 芜明-追星 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: function pagerFilter(data) { if (typeof data.length == 'number' && typeof data.splice == 'function') { // is array data = { total: data.length, rows: 阅读全文
posted @ 2016-09-26 09:12 芜明-追星 阅读(258) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>CheckBox Selection on DataGrid - jQuery EasyUI Demo</title> <link rel="stylesheet" type="tex 阅读全文
posted @ 2016-09-26 09:11 芜明-追星 阅读(313) 评论(0) 推荐(0) 编辑
摘要: /**用法:*/function doCellTip() { $('#dg').datagrid('doCellTip', { 'max-width': '100px' });} /** * 扩展两个方法 */$.extend($.fn.datagrid.methods, { /** * 开打提示功 阅读全文
posted @ 2016-09-26 09:10 芜明-追星 阅读(949) 评论(0) 推荐(0) 编辑
摘要: 1.validatebox可以用的用法:前两种适用于单个的validatebox;第三种应用于整个form里面的输入框; <1>.$("#id").attr("readonly", true); $("#id").removeAttr("readonly"); <2>.$("#id").attr(" 阅读全文
posted @ 2016-09-26 09:02 芜明-追星 阅读(160) 评论(0) 推荐(0) 编辑
摘要: .datagrid-cell, .datagrid-cell-group, .datagrid-header-rownumber, .datagrid-cell-rownumber{ -o-text-overflow: ellipsis; text-overflow: ellipsis;} 阅读全文
posted @ 2016-09-23 16:39 芜明-追星 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: //去掉字符两端的空白字符 String.prototype.Trim=function () { return this.replace(/(^[\t\n\r]*)|([\t\n\r]*$)/g,''); }; //去掉字符左边的空白字符 String.prototype.LTrim=functi 阅读全文
posted @ 2016-09-23 16:28 芜明-追星 阅读(154) 评论(0) 推荐(0) 编辑
摘要: finder: function(jq, conditions){ if(!$(jq).data("OriginalData")){ $(jq).data("OriginalData",$(jq).datagrid("getData").rows); } var rows = $(jq).datag 阅读全文
posted @ 2016-09-23 16:22 芜明-追星 阅读(477) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页