在我的编辑网格功能中,我的下拉菜单无法填充数据,即使我正在查看此主题http://www.trirand.com/blog/?p ... ..-问题,我仍然无法解析。所以我需要你的帮助,因为我是我的新手。 基本上在我的Action类
中 public class CategoryAction extends ActionSupport {
private static final long serialVersionUID = 3643090482804105068L;
private List<String> category;
public String execute() throws Exception{
generalDelegate util = new generalDelegate();
category = util.retrieveCategory();
System.out.println("+++++++++");
return "success";
}
public List<String> getCategory() {
return category;
}
}
该类别返回以下结果[牙膏,沐浴露,洗发水,剃须膏,洗手液,洁面乳,美发敷料] 在我的Struts.xml中
<action name="jsonCategoryAction" class="general.CategoryAction">
<result type="json" name="success">Category.jsp</result>
</action>
而最后是我的Main.jsp
<s:url id="selectCategoryUrl" action="jsonCategoryAction" />
<sjg:gridColumn
name="category1″
index="category1″
title="Item Category"
sortable="true"
editable="true"
edittype="select"
editoptions="{ dataUrl : '%{selectCategoryUrl}' }" />
请指导我哪里出错......非常感谢
答案 0 :(得分:0)
请阅读文档
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules#editoptions
dataUrl
The data is obtained via an AJAX call and should be a valid HTML
select element with the desired options <select><option
value='1'>One</option>…</select>. You can use option group.
所以你的ajax请求必须返回一个有效的html select元素。