struts2,jquery网格不显示结果
下面的网格未显示任何结果。结果存储在名为 eventList 的集合中
<sjg:grid
autowidth="true"
id="gridloadtable"
loadonce="true"
caption="Search Results"
href="%{remoteurl}"
gridModel="eventList"
rowNum="-1"
hidegrid="false"
scroll="true"
cellEdit="true"
cellurl="%{editcellurl}"
>
<sjg:gridColumn name="eventName" index="eventName" title="Company" sortable="true" href="/thankyou.jsp" targets="eventSearchResultsDiv"/>
</sjg:grid>
<sj:submit id="grid_load_colsbutton"
value="Show/Hide Columns"
onClickTopics="showloadcolumns"
button="true"/>
我可以使用 jsp 中的迭代器访问结果 -
<s:iterator value="eventList" var="event">
感谢您的帮助
The below grid is not displaying any results. The results are stored in a collection called eventList
<sjg:grid
autowidth="true"
id="gridloadtable"
loadonce="true"
caption="Search Results"
href="%{remoteurl}"
gridModel="eventList"
rowNum="-1"
hidegrid="false"
scroll="true"
cellEdit="true"
cellurl="%{editcellurl}"
>
<sjg:gridColumn name="eventName" index="eventName" title="Company" sortable="true" href="/thankyou.jsp" targets="eventSearchResultsDiv"/>
</sjg:grid>
<sj:submit id="grid_load_colsbutton"
value="Show/Hide Columns"
onClickTopics="showloadcolumns"
button="true"/>
I can access the results using an iterator in my jsp -
<s:iterator value="eventList" var="event">
Thank you for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请阅读wiki 中的网格文档。
对于网格,您需要一个 JSON 操作来为网格提供数据。
Johannes
please read the grid docs in the wiki.
for the grid you need a JSON Action which provides the data for the grid.
Johannes
您不需要将父包定义为展示。
就像在普通 struts2 中一样定义您自己的包并将其扩展为 struts-default、json-default。
You don't need to define parentpackage as showcase.
Define your own package just like you do in normal struts2 and extend it to struts-default, json-default.