随笔分类 - web前端
web前端 html javascript css
摘要:项目使用 springmvc4.x spring4.x hibernate4.x easyui 为了便于开发,扩展了easyui 的 datagrid 功能,下面直接贴上扩展代码:/** * context 指定为 项目上下文 * index 如果定义多组dataGrid,index指定为对应的参数...
阅读全文
摘要:$('#dg').datagrid({ title: 'CheckBox Selection on DataGrid', url: 'datagrid_data3.json', width: '700', rownumbers: true, columns:[[ ...
阅读全文
摘要://扩展方法$.extend($.fn.tree.methods, { getLevel:function(jq,target){ var l = $(target).parentsUntil("ul.tree","ul"); return l.length+1; ...
阅读全文
摘要:EasyUI中datagrid的行编辑模式中,找到特定的Editor,并为其添加事件function editrow(index) { if (rowedit == 0) { $('#ZCEditList').datagrid('beginEdit', index); ...
阅读全文
摘要:在JQueryEasyUI中为DataGrid自定义了一个ComboGrid编辑器。具体方法:自己写一个扩展$.extend($.fn.datagrid.defaults.editors, { combogrid: { init: function (container, op...
阅读全文
摘要:1111 ,'item_id' => 1, 'pro_id' => 1, 'pro_name' => 1111 ,'buy_num' => 5),Array ( 'order_id' => 1111 ,'item_id' => 2 ,'pro_id' => 2 ,'pro_name' => 222...
阅读全文
摘要:http://www.loststop.com/archive/soft-and-internet/3819.htmlhttp://www.loststop.com/easyui/demo/datagrid6.html
阅读全文
摘要:昨天写了一个ko+easyui的同样的实现,感觉写的太乱,用起来十分麻烦,于是今天照着edatagrid,写了一个etreegrid,这样再用ko绑定就方便多了。 使用很简单,$(tableId).etreegrid({idField:''parentIdField:'',treeField:'...
阅读全文
摘要:Name Size Modified Date [{ "id":"type_1", "...
阅读全文
摘要:(function($) { $.fn.extend({ money_mode: function(options) { var defaults = { decimal_length: 2,//小数点位数 ...
阅读全文
摘要:// This file is part of the jQuery formatCurrency Plugin.//// The jQuery formatCurrency Plugin is free software: you can redistribute it// and/...
阅读全文
摘要:/** * @author wsf数据加载 */;var intervalId = null;(function (win,$){ $.myCache = { dataCache : {},//数据缓存 domOperCache:{}//dom操作缓...
阅读全文
摘要:在实际应用中可能会碰到不同的需求,比如会根据每行不同的参数或属性设置来设置同列不同的editor类型,这时原有的例子就显的有点太过简单,不能实现我们的需求,现在应用我在项目中的操作为例,显示下实现同列不同操作的情况:(在这,我把例子的情况完全整合到了js里面配置实现,如有习惯于js实现方式的也可参考...
阅读全文
摘要:$("#bomStructureTable").treegrid({ url : "systemcontroller?id=10007",//首次查询路径 queryParams:{"bomid":"${bomid}"},//首次查询参数 columns : [ [...
阅读全文
摘要:看了jquery easyui databox的官方api,还可以加入倒是很简单,但是想要获得他的值和修改值就很费劲,不知道怎么弄,试了n次终于搞定。这里总结一下,供有相同问题的人查询。1、 官方api介绍DateBoxExtend from $.fn.combo.defaults. Overrid...
阅读全文
摘要:easyui datagriad 框架 在做列自适应时可以采取以下步骤: 1. fitColumns: true,/*自动扩大或缩小列的尺寸以适应表格的宽度并且防止水平滚动*/ 使之保持与父类宽度相同 2.设置列宽为百分比Js代码field:'opt',title:'操作',width:$(this...
阅读全文
摘要:属性striped设置为true,即striped:true。如果想更改颜色,可以更改easyui.css中的.datagrid-row-alt样式。
阅读全文
摘要:orry,代码如下$.extend($.fn.combobox.methods, { autoHeight : function (jq) {//combobox扩展,自动调整高度 var $this = jq; var $panel = $this.data("combo").pan...
阅读全文