[JBoss JIRA] Created: (RF-6723) Calendar: timezone is not correctly handled
by Nick Belaevski (JIRA)
Calendar: timezone is not correctly handled
-------------------------------------------
Key: RF-6723
URL: https://jira.jboss.org/jira/browse/RF-6723
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Reporter: Nick Belaevski
Assignee: Nick Belaevski
Fix For: 3.3.1
1. <h:form>
<h:commandLink value="Click" />
<calendar:calendar
showApplyButton="true"
popup="false"
id="calendar"
timeZone="#{calendarBean.timezone}"
datePattern="hh:mm MMM d, yyyy">
</calendar:calendar>
</h:form>
private TimeZone timezone = TimeZone.getTimeZone("GMT+9");
public TimeZone getTimezone() {
return timezone;
}
2. Select any date
3. Click link
4. Selected date is not the ones that was selected previously - bug
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 11 months
[JBoss JIRA] Created: (RF-6750) progressBar: "progressVar" attribute doesn't work.
by Mikhail Vitenkov (JIRA)
progressBar: "progressVar" attribute doesn't work.
--------------------------------------------------
Key: RF-6750
URL: https://jira.jboss.org/jira/browse/RF-6750
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Environment: IE6, IE7, IE8, FF2, FF3.0.7, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.1.BETA3)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Add rich:progressBar on the page:
<rich:progressBar id="progressBarID" value="59"
mode="client" enabled="true"
maxValue="100" minValue="0"
progressVar="progressVar" parameters="params:'%'">
<f:facet name="initial">
<h:outputText value="Process not started"></h:outputText>
</f:facet>
<f:facet name="complete">
<h:outputText value="Process completed"></h:outputText>
</f:facet>
<h:outputText
value="{progressVar} | {minValue} {params} / {value} {params}/ {maxValue} {params}"></h:outputText>
<h:outputText id="loadInfoPBID"
value="[Load: #{progressBar.loadInfo}] " />
<h:graphicImage value="/pics/ajax_process.gif" />
</rich:progressBar>
#2. Navigate to the page and verify "progressVar" displaying.
Actual behavior:
Just {minValue},{value} and {maxValue} are displayed. The same result with #{progressVar}.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 11 months