i am trying to submit to a action once user selects something in the struts jquery datepicker though the form is getting submitted to action the datepicker value is not getting set here is my code.
main.jsp
<html lang="en">
<head>
<sj:head compressed="false"/>
<title><s:text name="title.search.main" /></title></head>
<body>
<s:form action="ProcessRoutes.action" id="processRoutesForm">
<s:url id="findDCs" value="/xxxDCs.action"/>
<sj:datepicker name="strRouteDate" id="strRouteDate"
value="%{getText('format.date', '',{routeDate})}"
cssClass="smallField"
onCompleteTopics="datepickerSelectedDate"/>
<sj:div id="findDCsDiv" href="%{findDCs}" listenTopics="datepickerSelectedDate">
<sj:select id="dcSelect" name="selectedDc" list="%{#session.shipDCList}"
listKey="number" listValue="name"
headerKey="" headerValue="Select DC" onChangeTopics="dcSelectChanged"
src="findRoutes.action">
</sj:select>
</sj:div>
</s:form></body></html>
struts.xml
<action name="xxxDCs"
class="XXX.SearchMainAction"
method="xxxDCs">
<result name="input">/jsp/shipdcs.jsp</result>
<result name="success">/jsp/shipdcs.jsp</result>
</action>
action class contains getter setter for strRouteDate whose datatype is string i also tried changing that to Date datatype. where i am going wrong ,appreciate any help.