jQWidgets jqxGrid cellvaluechanged 事件
jQWidgets是一个 JavaScript 框架,用于为 PC 和移动设备制作基于 Web 的应用程序。它是一个非常强大、经过优化、独立于平台且得到广泛支持的框架。 jqxGrid用于说明以表格形式显示数据的 jQuery 小部件。此外,它完全支持连接数据,以及分页、分组、排序、过滤和编辑。
每当显示的jqxGrid的单元格的值发生更改时,都会激活cellvaluechanged事件。
句法:
$("#Selector").on('cellvaluechanged', function (event) {
// Arguments of the event
var args = event.args;
// Data field of the column
var datafield = event.args.datafield;
// Bound index of the row
var rowBoundIndex = args.rowindex;
// Value of the new cell
var value = args.newvalue;
// Value of the old cell
var oldvalue = args.oldvalue;
});
链接文件:从给定链接下载 jQWidgets。在 HTML 文件中,找到下载文件夹中的脚本文件。
示例:下面的示例说明了 jQWidgets 中的jqxGrid cellvaluechanged事件。
HTML
GeeksforGeeks
jQWidgets jqxGrid cellvaluechanged Event
输出:
参考: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-api.htm?search=