vote up 0 vote down star

In my struts 2.0.12 application I'm trying to use s:datetimepicker but it does not render.

Firebug error: dojo is not defined on dojo.require("dojo.widget.DatePicker");

My jsp page

<%@taglib prefix="s" uri="/struts-tags" %> . . . . . . . .

What's wrong? Did I miss something?

flag

2 Answers

vote up 1 vote down

hi....

For use datetimepicker you need to use struts-dojo-tags, this came into de struts-dojo-plugin.jar of struts library, now u have the tags, loaded whit

<%@taglib prefix="sx" uri="/struts-dojo-tags"%>

and put inside head tag

to visualize the date time picker....

... maybe this can help you....

link|flag
if its on struts 2.1 – Kamia Apr 13 at 13:55
vote up 1 vote down

Yes you missed the Ajax header (Ajax struts theme) tag.

This loads the Dojo Javascript files at the start of the page.

Put the following in your HTML head:

<head> [..other stuff] <s:head/> <!-- Struts 2 Ajax/Dojo needed for calendar --> </head>

By the way - the above post talks about struts 2.1.x and not struts 2.0.12 (the one you are using)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.