This code should send two parameters to the struts action:
<s:url id="loadReportsForAPageInitial" value="/loadReportsForAPage.action" >
<s:param name="reportsCount_hidden" value="3"></s:param>
<s:param name="pageNumber_hidden" value="1"></s:param>
</s:url>
<sj:div href="%{loadReportsForAPageInitial}">
</sj:div>
the problem is only the first parameter's value is sent to the struts action and the second one is null! I changed the place of two parameters and again only the first one was fine.
Is it possible to pass more than one parameter via a s:url tag?
UPDATE
this is how the url tag is rendered:
<script type='text/javascript'>
jQuery(document).ready(function () {
var options_div_1179027906 = {};
options_div_1179027906.jqueryaction = "container";
options_div_1179027906.id = "div_1179027906";
options_div_1179027906.href = "/FAP/loadReportsForAPage.action";
options_div_1179027906.hrefparameter = "reportsCount_hidden=3&pageNumber_hidden=1";
jQuery.struts2_jquery.bind(jQuery('#div_1179027906'),options_div_1179027906);
});
<s:url>tag, but the real question regards the<sj:div>tag and how it handles parameters--it looks like it's escaping it. I think you're correct that this is the issue. – Dave Newton Jan 29 '12 at 16:38hrefparameter. In the meantime, it could be worked around in a variety of ways, by doing minimal parsing/splitting of a single parameter, if the source yields no clues. – Dave Newton Jan 29 '12 at 16:46