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

问题描述:

我想从服务器重新加载数据表而不刷新它。如何使用tsruts2和ajax实现它?请帮助。如何使用带有struts的ajax来刷新jsp页面的一部分?

看看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>