テーブルと値のリストを内部に持つ JSP を Java で処理します。
これらの値の 1 つであるflagp
はブール値です。
「真/偽」を表示する代わりに、「はい/いいえ」を表示したいと思います。どうすればこれを変更できますか?
<logic:present
name="tabellaGenericaForm"
property="listaLog">
<layout:pager maxPageItems="5" width="100%"
sessionPagerId="currentPageSt">
<logic:notEmpty
name="tabellaGenericaForm"
property="listaLog">
<layout:collection name="tabellaGenericaForm" property="listaLog" id="elemento">
<layout:collectionItem title="form.flagp" property="Da" sortable="true">
<bean:write name="element" property="flagp" />
</layout:collectionItem>
</layout:collection>
</logic:notEmpty>
</layout:pager>
</logic:present>