免费的 jqGrid 4.8.0 - 如何从字段格式化程序中获取 gridId
Free jqGrid 4.8.0 - How to get the gridId from within the field formatter
有没有办法从格式化程序中提取 gridId,在 colModel 上取消格式化函数?
谢谢,
将使用 3 个参数 cellValue
、options
和 rowData
调用格式化程序,并将 this
初始化为网格的 DOM。要获取网格 ID,您可以使用 this.id
或 options.gid
。在使用 unformat
回调的情况下, option
包含较少的属性,但仍然可以使用 this.id
.
有没有办法从格式化程序中提取 gridId,在 colModel 上取消格式化函数?
谢谢,
将使用 3 个参数 cellValue
、options
和 rowData
调用格式化程序,并将 this
初始化为网格的 DOM。要获取网格 ID,您可以使用 this.id
或 options.gid
。在使用 unformat
回调的情况下, option
包含较少的属性,但仍然可以使用 this.id
.