开发者

In jqGrid, is there anyway to use Ajax to get data for your custom_element?

开发者 https://www.devze.com 2023-02-10 11:43 出处:网络
I am doing something similar to this question where I have a list of checkboxes as a custom edit control.The difference is that I want to get my list from the server (not hard coded on the client with

I am doing something similar to this question where I have a list of checkboxes as a custom edit control. The difference is that I want to get my list from the server (not hard coded on the client with Check1, Check2, Check3.

Is there any way to do this either in the column setup or in the custom_element function?

It seems like I need something similar to the dataUrl property that you use for select items but that seems to only apply to select items (not custo开发者_如何转开发m ones).

Any suggestions?


You can use any list option (to be exactly editoptions) during the grid initialization and then overwrite the value with the real data loaded from the server:

$("#list").jqGrid({
    colModel: [
        {name:'MyMultiCheck',edittype:'custom',
         editoptions:{custom_element:MultiCheckElem,
                      custom_value:MultiCheckVal,list:''}
        }
        ...
    ]
    ...
});
$.ajax({
    url:"getMultiCheckList",
    // any other parameters like dataType:'json',
    // type: 'POST' (default type is 'GET') which depend on the server
    success: function(data){
        // the code here depend on the format of data returned from the server
        // in the simplest situation we have as data already the comma-separated
        // string which we need as a value for the list parameter so we can do
        jQuery("#list").setColProp('MyMultiCheck',{editoptions:{list:data}});
    }
});
0

精彩评论

暂无评论...
验证码 换一张
取 消