博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Easy ui Datagrid(下拉、复选、只输入数字、文本) 追加、删除、更改
阅读量:6265 次
发布时间:2019-06-22

本文共 2212 字,大约阅读时间需要 7 分钟。

                Item ID                Product                List Price                Unit Cost                Attribute                Status            
$(function(){            var lastIndex;            $('#tt').datagrid({                toolbar:[{                    text:'append',                    iconCls:'icon-add',                    handler:function(){                        $('#tt').datagrid('endEdit', lastIndex);                        $('#tt').datagrid('appendRow',{                            itemid:'',                            productid:'',                            listprice:'',                            unitprice:'',                            attr1:'',                            status:'P'                        });                        lastIndex = $('#tt').datagrid('getRows').length-1;                        $('#tt').datagrid('selectRow', lastIndex);                        $('#tt').datagrid('beginEdit', lastIndex);                    }                },'-',{                    text:'delete',                    iconCls:'icon-remove',                    handler:function(){                        var row = $('#tt').datagrid('getSelected');                        if (row){                            var index = $('#tt').datagrid('getRowIndex', row);                            $('#tt').datagrid('deleteRow', index);                        }                    }                },'-',{                    text:'GetChanges',                    iconCls:'icon-search',                    handler:function(){                        var rows = $('#tt').datagrid('getChanges');                        alert('changed rows: ' + rows.length + ' lines');                    }                }],                onBeforeLoad:function(){                    $(this).datagrid('rejectChanges');                },                onClickRow:function(rowIndex){                    if (lastIndex != rowIndex){                        $('#tt').datagrid('endEdit', lastIndex);                        $('#tt').datagrid('beginEdit', rowIndex);                    }                    lastIndex = rowIndex;                }            });        });

 

转载于:https://www.cnblogs.com/yhyjy/archive/2013/04/10/3011775.html

你可能感兴趣的文章
计算机网络与Internet应用
查看>>
Django 文件下载功能
查看>>
走红日本 阿里云如何能够赢得海外荣耀
查看>>
数据结构与算法(回溯法) --javascript语言描述
查看>>
redis第二步(事务和锁)
查看>>
磁盘空间满引起的mysql启动失败:ERROR! MySQL server PID file could not be found!
查看>>
Net Standard扩展支持实例分享
查看>>
RHEL,centOS下vncserver,service命令关联的rpm包
查看>>
QTP关键字视图下显示项的相关设置
查看>>
linux cpu内存利用率获取
查看>>
Binder.js的重写过程记录
查看>>
汗,铁道部的12306js脚本竟然用的这么杂乱
查看>>
点播转码相关常见问题及排查方式
查看>>
[arm驱动]linux设备地址映射到用户空间
查看>>
在线转码
查看>>
我的友情链接
查看>>
励志短句在线翻译的方法介绍
查看>>
博客园美化-coffee
查看>>
Hibernate Annotation 学习
查看>>
Hadoop 3.0 纠删码技术分析(Erasure Coding)
查看>>