日期:2014-05-17  浏览次数:20889 次

jquery easyui datagrid editor data问题!!
本帖最后由 liyueyang165 于 2013-11-03 16:47:35 编辑



编辑单元格的时候,下拉框的内容如何取?
js代码
field:'d.name',title:'作业状态',width:50,sortable:true,
            editor:{
                type:'combobox',
                options:{
                    valueField:'d.name',
                    textField:'name',
                    url:'${ctx}/proj/loadMapDateBaseMemberJobManage.do',
                    required:true
                }
            }


action代码
public String loadMapDate() throws Exception {
try {
this.setQf(new SqlQueryFilter(this.getReq(),
SqlSpellerDbType.ORACLE));
List<Map> positionMaps = (List<Map>) basePositionService.getPosiotnMap();
this.getRequest().put("positionMaps", positionMaps);
this.setForwardPage("/oa/project/member/MemberJobManageList.jsp");
return this.SUCCESS;
} catch (Exception e) {
e.printStackTrace();
this.getLogger().error(e.getStackTrace());
throw new Exception("要员作业状况" + Constants.EXCEPTION_LIST_MSG);
}
}



------解决方案--------------------
在官网下载的easyui里有demo,直接拿来改一下就可以了