0

这是我的代码:

<script type="text/javascript">
var grid = $("#list");
$(function(){ 
var grid = $("#list");
grid.jqGrid({
url:'grid.php',
datatype: 'xml',
mtype: 'GET',
colNames:['ID sprzętu','Kod sprzętu', 'Właściciel','Konfiguracja'],
colModel :[ 
  {name:'SprzetID', index:'SprzetID', width:90}, 
  {name:'Kod', index:'Kod', width:120, editable: true}, 
  {name:'Wlasciciel', index:'Wlasciciel', width:200, align:'left', editable: true}, 
  {name:'Konfiguracja', index:'Konfiguracja', width:400, align:'left', editable: true}, 
],
pager: '#pager',
rowNum:10,
rowList:[10,20,30],
sortname: 'SprzetID',
sortorder: 'asc',
viewrecords: true,
gridview: true,
caption: 'Lista sprzętu'
});
grid.jqGrid('navGrid','#pager',
      {add: true, edit: true, del: true, search: true}, //options
      {width:400, }, // edit options
      {width:400,closeAfterAdd: true, url:'add.php'}, // add options
      {reloadAfterSubmit:false}, // del options
      {width:600} // search options
      );
}); 

一切都很好,当正确地将记录添加到数据库时,但是当例如字段“Kod”是重复的(它是唯一的字段)时,记录不能被添加到数据库......而且不是。我想显示带有错误消息的警报,但我在文档中找不到如何做到这一点......我猜,我应该使用“afterSubmit”,但是如何......我不知道。

4

1 回答 1

1

解决。在添加参数中,我添加了代码:

afterSubmit: function(response, postdata) {
              if(response.responseText != ""){
                  return [false, response.responseText];

              }else{
                  return [true,"Ok"];
              }}
于 2012-10-12T14:14:24.157 回答