Sumeet,
We have a calendar control in one of our forms so it is certainly possible. Two possible problems spring to mind. First if calendar.html isnt part of your orbeon codebase (part of another application) you need to add a urlnorewrite attribute to your <a href="">, this tells the orbeon framework not to rewrite the url.
Second, if your calendar control tries to get the element it wants to push a value into, it cannot do it by 'name' as orbeon use this attribute.
You can use id instead, eg:
<xforms:input xhtml:id="startDate" xhtml:readonly="true" ref="plannedStartDate"/>
and then use getElementById('startDate') to get a handle on the element.
Hope this helps,
David Sinclair.
------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ orbeon-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/orbeon-user
