Re: URL tag question

2024-10-30 Thread Lukasz Lenart
śr., 30 paź 2024 o 16:32 Matt Williams napisał(a): > > Thanks Nate! I overlooked that! > This does work! > > > name="myData" value="%{#myDataList}" /> > Feel free to edit the page and add your example, PRs are welcome :) Cheers Łukasz --

Re: URL tag question

2024-10-30 Thread Matt Williams
, but instead put them all into an Array or Iterable object and add that as the value for a single param child tag. Regards, Nate -Original Message- From: Matt Williams Sent: Wednesday, 30 October 2024 15:52 To: user@struts.apache.org Subject: URL tag question I am using Struts 6.6

RE: URL tag question

2024-10-30 Thread Nate Kerkhofs
ginal Message- From: Matt Williams Sent: Wednesday, 30 October 2024 15:52 To: user@struts.apache.org Subject: URL tag question I am using Struts 6.6.0, I am needing to generate a URL using the s:url tag that will pass a List of values (example:  myurl.action?myData=1&myData=2&myData=3)

URL tag question

2024-10-30 Thread Matt Williams
I am using Struts 6.6.0, I am needing to generate a URL using the s:url tag that will pass a List of values (example:  myurl.action?myData=1&myData=2&myData=3) I have:     1     2     3 However, the generated URL only includes myData=3. Am I missing something? Thanks! Matt