, , , . -/ .
"", .
"" , (css ), ( , ).
, jqGrid - + jQuery Autocomplete
http://jsbin.com/owatu ( /edit URL-, )
,
- css
- afterSaveCell, , jQgrid, , + ,
, AfterSaveCell jqGrid .
jQuery("#celltbl").jqGrid({
...
{name:'name', width:100, editable:true},
...
afterEditCell: function (id,name,val,iRow,iCol) {
if(name=='name') {
jQuery("#"+iRow+"_name","#celltbl").autocomplete(cities);
}
},
afterSaveCell : function(rowid,name,val,iRow,iCol) {
if(name == 'name') {
jQuery("#celltbl").jqGrid('setRowData',rowid,{name:jQuery(".ac_over").text()});
jQuery(".ac_results").remove();
}
}
...