3.6 version
===========
Bug Fixes
---------
* Fix problem with getAbsoluteIndex on IE8
* Fix in triggerReload grid to reset the savedRow array.
* Fix in setGridWidth method when try to resize a grid a and there is no data.
* Fix header aligment in ie8
* Fix in createEl function to check for val and not for html when select
* making getChangedCells method compatible with unformat function if defined
* Fixed record count when scroll true
* Fix in setSelection method to accept numbers
* Fix IE header checkbox when multiselect is true
* Fix for searching DOM elements with id containing special characters
* Fix a checkbox checking in form editing module.
* Fix getCol to use unformat function
* Better looking buttons in form editing
* Fix searchFilter in IE7 and IE6 not to return undefined value when more
than one field is searched.
* Some fixes for datepicker UI in inline and cell edit (when present)
* Fix in setLabel method not to clear the sort icons when we set new label
* Fix in form edit when a formatter select is used
* Fix the id pollution when multiselect is enabled. Now the id of every
common multiselect is combination of cb_ + id of the grid
* Fixed bug when deselectAfterSort false and we are in multiselect mode
* Fix in unformat number and currency
* Fixed bug when creating a select with dataUrl and select is set to multiple.
* Fix a bug when creating select with multiple option. Also the attribute
should be set immediatley after the element is created and not after.
* Fix a bug in form edit. The comapared values should be trimed since of
split(",") which cause the elements to begin with space.
* Fix a jqGrid loader (development version) for IE browsers
* Fix for form icons in Opera
* Fix getGridParam to return values 0 or false
* Avoiding the overhead of local functions and maintenance issues when the
parameters change
* Opera fix for cursor col-resize
* Fix in editGridRow when a save key is defined and the key is Eneter we
should not do save when we are in teaxtarea element
* Fix in formatter checkbox when the value is undefined. We also add a
default format for the checkbox too
* Fix addRowData to use key:true (keyIndex) when rowid is not defined
* Fix formatter bug for the select to use the defaultFormat
* Adding a 3 parameter to the unformat function - the cellobject.
* Fix alternate rows when we sort data locally.
* Fix in addRowData for alternate rows when we add item as last
* Fix collapseRow in treegrid preventing infinite recursion
* Fix in stripHtml function to parse numeric values
* Fix in delGridRow to get "fresh" Data from delData object
* Fix problems with width option if set as string.
* Fixing $jgrid.format function in base module to accept undefined parameter.
* Fix for saveRow method in aftersave function. Also we pass the request and
not the responseText. Also both aftersave and success functions have the
same type parameter - the response
* Fix for serchhidden in searchGrid method
* Fix for setGridWidth method
* Fix setColWidth function
* Fix for topinfo and bottom info in formedit to appear separatley in edit and add dialogs
* Fix searchFilter css to work when called from subgrid
* Fix celledit to work better when datepicker is attached
* Fix in viewGrid row to vizualize only the columns that only not hidden.
Additions and changes
---------------------
* New API
* RTL Support
* Column reordering
* Added life scrolling of data
* Added gridResize method which can resize the grid. Also use a jQuery UI
resizable and can use any options of this widget
* Added sortableRows method which allow us to sort rows with drag and drop
* Added gridDnD method. The method connect two or more grids so that drag and drop rows
between these is possible
* Add columnChooser method which allows choosing/sorting columns at the same
time. This method requiere multiselect plugin
* Now getRowData can return all rows when rowid is not set.
* getCol now can return summary, average and count of the selected row. The
3 parameter determines this (valid are sum, avg, count). If this parameter
is set and is valid, the returned value is a scalar.If the param is not
valid the returned value is empty array.
* To setRowData we add a 3 parameter. If the parameter is string we use
addClass to add classes. If the parameter is object we use css to add css
properties. Note that we can set properties and classes without data, in
this case we should set data to false
* Adding a event object to ondblClickRow and onRightClickRow events as 4 parameter
* Add a ant based build system which allow us to minify the JS code
* Added custom validation property in editing modules
* Added possibility to create custom element in editing modules
* Adding support to configure the ajax request in a way that user want. This
is done in all modules where ajax is used.
* Added class in cell edit and inline edit so that the cell or row can not
be edited - the corresponding classes are 'not-editable-cell' and
'not-editable-row'.
* Added Hebrew Translation
* Added a beforeCheckValues event in editGridRow method. The execution is
before checking the values. Should return object of the posted data.
* Added Romanian translation
* Added a property classes in colModel where we can attach classes to column.
* info_dialog function can be used as separate modal dialog
* Added a class ui-ellipsis in grid css file. Also work in FireFox too.
* Changind the order of calling the events beforeSearch and beforeClear in
filterToolbar method. Also the events are called immediatley after triggering the grid
* To onCellSelect we replace the 4 parameter with the more natuaral event instead of e.target -
sorry if this will bring to some confusions.
* Added searchoptions value parameter in order to separate the editing module and search module.
We first look for such option in searchoptions and if not found we use the
editoptions value
* Added fixed property in colModel which allow us not to change the
column width if shrinkToFit is true and we set new width of the grid.
* Added buildSelect function to deserialize data for the select. This is option
can be added in editoptions or search options
Please read The Installation instructions first in install.txt
================================================
3.5 beta (buld6- build11)
New Properties and methods
==========================
- Added new grid parameter hoverrows. When set to false the mouse hovering is
disabled in the grid data rows.
- Added rowid as parameter to error function in saveRow method - inline
editing module
- treeGrid to be initially work with datatype local
- Added new method updateGridRows (grid.custom.js)
This method update the existing data in the grid by given id rowname.
Syntax: updateGridRows (data, rowidname, jsonreader)
data is a array of data in format
[{name:value,name1:value1...},{name:value,name2:value2...}]
where the name is the name from colModel and value is the actuall value.
It is not neccessary that all columns are present in the data item object
(the same as setRowData method)
rowidname (string) - is the name of the row which should acts as id.
If not set the name "id" is used.
jsonreader (boolean) default false. If set to true a jsonReader definition
is used to set the data. Note that this work only of the item in jsonReader
object 'repeatitems' is set to true.
- Switch to namedItems JS function. This improve the speed. Previously we
walk throught the entry rowset to find the rowIndex of the given rowid.
Now we use the build in javaScript method namedItems which do the same.
- multiselect is enabled in inline edit module.
- To the importComplete event in jqGridImport method we pass the response.
- Added support for alternate rows. Also added n
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
Jqgrid demo-史上最强大,没有之一, 为了大家能够更好的学习和使用Jqgrid网格插件,我决定用Strtus2+Spring+hibernate+Jquery+Jqgrid实现一个Jqgrid网格插件的demo。当然官方网站上面已经有了PHP版本和ASP.NET版本的DEMO,地址:http://www.trirand.com/blog/?page_id=5 。我做的算是一个java版本的。为提高用户体验,页面与后台采用ajax交互,全程无刷新。 如果你还不了解Jqgrid网格插件的强大的处,也不了解Jqgrid的基本用法,可以先去www.javakfz.com看看关于Jqgrid的文章。这篇文章的重点是放在demo上面的,所以不会对网格插件追究太深。
资源推荐
资源详情
资源评论















格式:zip 资源大小:322.8KB













收起资源包目录





































































































共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论


qq_35966684
- 粉丝: 0
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
- 大数据时代下高校信息化现状与管理体系研究.docx
- PLC实训研究报告.doc
- 中职计算机网络技术教学的现状与创新策略探讨.docx
- 基于AT89S52单片机的直流数控恒流源方案设计书1.doc
- 高校大学生暑期活动展开方案讨论
- 基于 YOLOv5 与 PyQt5 的目标检测图形化上位机工具
- 基于C#的excel导入数据生产二维码.rar
- c++机房神器,无聊时十分有用
- 基于Create-React-App脚手架构建的现代化前端开发项目-React-JavaScript-ES6-Webpack-Babel-ESLint-热重载-单元测试-生产构建-.zip
- 基于Windows平台点击startcmd启动的Java加密算法实验项目-包含JDK18运行环境与RSA加密模块的实验性代码库-用于密码学教学演示和加密通信算法缺陷分析-涵盖L.zip
- 基于React Native和Tensorflowjs,结合图片反向搜索、人体目标检测以及人体姿势识别等技术的智能相机应用
- 基于C#的内存修改工具源码.rar
- 一个最简单的单目标检测,实现了数据迭代器、网络模型、预测脚本和训练模型脚本,希望各位通过这个项目能提高对目标检测的认识和实践能力
- 移动虚拟工作:概念、挑战与未来
- 基于单目标检测的基础项目:含数据迭代器、网络模型及训练预测脚本,助你提升认知与实践能力
- 计算机系统导论课程实验项目完整解决方案集合-包含C编程基础实验-数据结构与位操作实验-二进制炸弹逆向工程实验-缓冲区溢出攻击实验-程序性能优化实验-缓存系统模拟实验-UnixShe.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
