I am using date fields in Orbeon form builder that should be prefilled with the current date (see http://i42.tinypic.com/erdjrb.jpg). When choosing a date by hand in the form, the date format in resulting XML model is set to "2011-07-12". But when not changing the default value of current-date(), then I get "2011-07-12+02:00". Does anybody know why the date format is different when I prefill it with current-date()?

Thank you!

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The XPath function fn:current-date() by definition returns the date together with explicit time zone information. I assume orbeon just passes the function call to the XPath engine (Saxon i think). A quick workaround would be to format the result of current-date() using format-date(), for example:

format-date(current-date(), '[Y]-[M01]-[D01]')

Since i don't use Form Builder, i can't tell in detail, but i assume setting the config options how to format xforms:input controls regarding date and time values applies for form builder, too.

link|improve this answer
thats a good workaround. I also do this way. – Kaipa M Sarma Jan 16 at 18:55
1  
You can also use adjust-date-to-timezone() with an empty sequence as the second argument. Quoting from the spec: "If $timezone is the empty sequence, returns an xs:date without a timezone." So you can write: adjust-date-to-timezone(current-date(), ()). w3.org/TR/xpath-functions/#func-adjust-date-to-timezone – avernet Jan 17 at 2:23
Thanks Avernet, This will also be useful. – Kaipa M Sarma Jan 17 at 11:02
Avernet, that works like a charm, thank you! – lacco Jan 18 at 10:02
@avernet: you're right, using adjust-date-to-timezone() is even better because it preserves the xs:date type, while format-date() returns a xs:string. – tohuwawohu Jan 18 at 10:15
feedback

Your Answer

 
or
required, but never shown

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