Re: Understand usage of <s:property> tag inside <s:iterator>

M Huzaifah <[email protected]> Wed, 19 Feb 2025 18:35:19 +0700
Newsgroups gmane.comp.jakarta.struts.user
Message-ID <CA+0qJZsDNa0135jw8YvJixFYBS+GyQrvh3P-XDFPcmSimdrDsw@mail.gmail.com>
Hii,

I prefered use the second one. Just use "name"

Regards

On Wed, Feb 19, 2025, 5:25 PM Murali Challa <[email protected]> wrote:

> Hi,
>
> Can someone suggest among below which is best/preferred way of using
> <s:properly /> tag with in <s:iterator/>.
>
>
> <s:iterator value="#session.userList" var="user">
>
>   <s:property value="#user.name" /> //getting value using var.name
>   <s:property value="name" /> // getting value directly using name
>
> </s:iterator>
>
> Both are working but just wanted to know which is more preferred to use.
>