jQuery-从事件触发器获取jqgrid DOM ID

前端之家收集整理的这篇文章主要介绍了jQuery-从事件触发器获取jqgrid DOM ID 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在扩展jqgrid默认选项:

$.extend(
    $.jgrid.defaults,{
        datatype: "json",jsonReader:
        {
            root: "rows",page: "page",total: "total",records: "records",repeatitems: false,cell: "cell",id: "id"
        },height: 'auto',rowNum: 20,recordtext: 'record',loadtext: 'loading',imgpath: 'path',viewrecords: true,multiselect: true,postData: { random: Math.random() },rowList: [10,20,30,50],beforeRequest: function() { OnBeforeRequestFunct(); },onPaging: function() { OnPagingPersonalize(); },gridComplete: function() { if(editedRowIds.length > 0)
                                        refreshSelection(); 
                                 }
    }
);

因此,当从网格触发触发事件beforeRequest时,我需要将调用方jqgrid id传递给OnBeforeRequestFunct().

最佳答案
因此,您想传递网格的DOM元素的ID?你有没有尝试过:

OnBeforeRequestFunct(this.id);
原文链接:https://www.f2er.com/jquery/530936.html

猜你在找的jQuery相关文章