将多个参数传递给jtable

时间:2015-07-28 14:25:37

标签: jquery asp.net jtable webmethod jquery-jtable

这是我的jtable初始查询。我没有把所有代码放在这里。它工作正常。

  $('#PersonTableContainer').jtable({
            title: 'Cheque Details',
            paging: true, //Enables paging
            pageSize: 10, //Actually this is not needed since default value is 10.
            sorting: true, //Enables sorting
            defaultSorting: 'AutoTrNo ASC', //Optional. Default sorting on first load.
            actions: {
                listAction: '/frmAccChequeClear.aspx/TransationList'

            },

但我的问题是我想在此行中发送参数

listAction:'/ frmAccChequeClear.aspx / TransationsList'

我的参数场景是这样的。

DropDown1:SELECT GLCODE - >>>> DropDown2:SELECT SLCODE

这里给出了两个下拉列表。它们是级联dorpdown第二个依赖于第一个。

当我选择第一个下拉列表时,它应该采用下拉数据值字段

并且应该将参数传递给此

 actions: {
        //listAction: '/frmAccChequeClear.aspxTransationList'
        '/frmAccChequeClear.aspx/CheqeList?glcode=' +dropdown.value
        },

当我选择第二个时,两个下拉值都应传递给这些 参数

 actions: {
    //listAction: '/frmAccChequeClear.aspx/TransationList' 
     '/frmAccChequeClear.aspx/CheqeList?glcode=' + $("dropdown1").val() + "&slcode=" + $("dropdown2").val(),
     },

1 个答案:

答案 0 :(得分:0)

这对我有用:

listAction : 'http://localhost:8080/springapp/employee/getEmployeescustom?action=list&param1=123&param2=ganesh&param3=bangalore