我正在使用 JSP 和 Servlet(IDE:Eclipse,数据库:Oracle10)开发一个 Web 应用程序。我jqGrid
用来以表格格式显示记录。
代码片段:
{name:'CITY',index:'CITY', width:70,editable:true,edittype:"select",editoptions: {dataUrl: 'ProfileServ?action=comboCity', dataEvents: [{ type: 'change', fn: function(e) {alert(this.value);city= this.value;}}],}},
{name:'PIN',index:'PIN', width:200,sortable:false,editable:true, edittype:"select",editoptions: {dataUrl: 'ProfileServ?action=comboPin'}},
我想PIN
根据 中选择的值更改 的值CITY
。我已经使用dataEvents
andtype: 'change'
来获取CITY
. 我成功地获得了选定的值CITY
。
我的问题是,我应该如何更新值更改PIN
时的值?CITY