アプリケーションに Struts2 と DisplayTag を使用しています。次の 2 つの機能を含め、テーブルの結果を Excel にエクスポートする必要があります。1.検索基準のすべてのレコードをエクスポートする必要があります(私はページネーションを持っているので、一度に20個のレコードしか表示していません)。2.フィルター条件をExcelに追加する必要があります。
エクスポートする前にフィルター条件を Excel に追加できるカスタム デコレーターを使用することは可能ですか。
私が使用しているコードのサンプル、
<display:table id="data" name="lstEntities"
sort="external" uid="row" htmlId="rowid" class="tborder"
excludedParams="*" style="width:100%"
pagesize="${pageCriteria.recordsPerPage}" partialList="true"
size="${pageCriteria.totalRecords}" export="false"
requestURI="planningItemListMDA.action">
<display:column property="planningIrc" sortName="planningIrc"
sortable="true" titleKey="table.title.planningIrc"
style="width:100px" />.....
前もって感謝します。