jqGrid editRow отправка сообщений на сервер - PullRequest
0 голосов
/ 24 августа 2009

Я использую JqGrid для отображения некоторых данных и хочу включить редактирование для одного столбца (InvoiceStatus).

Проблема в том, что он не вызывает editurl server.php.

Спасибо.

var lastSel;
jQuery(document).ready(function(){

// Generates the Category Grid, and observes for events, and acts on them   
jQuery("#list987").jqGrid({
    url:'php/selectInvoices.php?nd='+new Date().getTime(),
    datatype: "json",
    type: "POST",
    colNames:['InvoicePdfID', 'InvoiceNumber', 'TransactionID', 'InvoiceDate', 'InvoiceStatus', 'QBNumber'],
    colModel:[ 
        {name:'InvoicePdfID', index:'InvoicePdfID', width:15, hidden:true},
        {name:'InvoiceNumber', index:'InvoiceNumber', width:150},
        {name:'TransactionID', index:'TransactionID', width:150, hidden:false},
        {name:'InvoiceDate', index:'InvoiceDate', width:150},           
        {name:'InvoiceStatus', index:'InvoiceStatus', width:150, editable: true,edittype:"select",editoptions:{value:"Sent:Sent; Paied:Paied; Created:Created"}},
    {name:'QBNumber', index:'QBNumber', width:150}      
        ],
    pager: jQuery('#pager987'),
    rowNum:10,
    imgpath: 'themes/sand/images',
    sortname: 'id',    
    sortorder: "asc",   
    scrollOffset:0,
    onSelectRow: function(id){
        if(id && id!==lastSel){                 
            jQuery('#list987').restoreRow(lastSel); 
            lastSel=id; 
         }
        jQuery('#list987').editRow(id, true);
    }, 
viewrecords: true,
editurl: 'php/server.php',
mytype: "POST",   
caption: "Service Types"
});

1 Ответ

0 голосов
/ 13 декабря 2011

попробуйте удалить строку:

mytype: "POST", 

Пример:

viewrecords: true,
editurl: 'php/server.php',  
caption: "Service Types"
});

Я просто сравнил имеющуюся у меня сетку, и она не удалась, когда я поместил это в мой код.

Надеюсь, это поможет!

  • @ nbost
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...