如何使用带有struts的ajax刷新jsp页面的一部分?

时间:2010-07-12 13:38:33

标签: ajax struts2

我想从服务器重新加载数据表而不刷新它。如何使用tsruts2和ajax实现它。请帮助。

1 个答案:

答案 0 :(得分:0)

看看Struts2 jQuery Grid Plugin也许它会帮助你。 有了这个你可以和Struts2 json插件一起构建动态 基于AJAX的表。

样品:

<s:url id="remoteurl" action="jsontable"/> 
<sjg:grid 
    id="gridtable" 
    caption="Customer Examples" 
    dataType="json" 
    href="%{remoteurl}" 
    pager="true" 
    gridModel="gridModel"
    rowList="10,15,20"
    rowNum="15"
    rownumbers="true"
>
    <sjg:gridColumn name="id" index="id" title="ID" formatter="integer" sortable="false"/>
    <sjg:gridColumn name="name" index="name" title="Name" sortable="true"/>
    <sjg:gridColumn name="country" index="country" title="Country" sortable="false"/>
    <sjg:gridColumn name="city" index="city" title="City" sortable="false"/>
    <sjg:gridColumn name="creditLimit" index="creditLimit" title="Credit Limit" formatter="currency" sortable="false"/>
</sjg:grid>