On 6/20/06, Susumu Majima <[EMAIL PROTECTED]> wrote:
When I try to show time it isn't shown properly.
the code snipped is below
<h:outputText value ="#{schedule0.sch_start">
<f:convertDateTime pattern "HH:mm"/>
</h:outputText>
If actual data is 9:00 then shown date is 0:00.
try setting type="time", I think it expects a "date" only string by default.
If you're worried about defaulting to GMT, set timeZone="YourTimeZone"
(or bind it to a TimeZone object), though if you have the timezone set
correctly in your System properties this should not be an issue.