[richfaces-svn-commits] JBoss Rich Faces SVN: r11765 - in trunk/test-applications/jsp/src/main/webapp: ProgressBar and 1 other directory.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Mon Dec 15 06:20:15 EST 2008
Author: tromanovich
Date: 2008-12-15 06:20:15 -0500 (Mon, 15 Dec 2008)
New Revision: 11765
Modified:
trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp
trunk/test-applications/jsp/src/main/webapp/Calendar/CalendarProperty.jsp
trunk/test-applications/jsp/src/main/webapp/ProgressBar/ProgressBar.jsp
Log:
Modified: trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp 2008-12-14 22:03:12 UTC (rev 11764)
+++ trunk/test-applications/jsp/src/main/webapp/Calendar/Calendar.jsp 2008-12-15 11:20:15 UTC (rev 11765)
@@ -120,6 +120,7 @@
weekDayLabelsShort="#{calendarBean.weekDayLabelsShort}"
monthLabels="#{calendarBean.monthLabels}"
monthLabelsShort="#{calendarBean.monthLabelsShort}"
+ todayControlMode="#{calendarBean.todayControlMode}"
value="#{calendarBean.selectedDate}"
currentDate="#{calendarBean.currentDate}"
cellHeight="#{calendarBean.cellHeight}"
@@ -143,6 +144,7 @@
rendered="#{calendarBean.renderedAjax}" focus="popupModeID"
mode="ajax" required="#{calendarBean.required}"
requiredMessage="Required Message" timeZone="#{calendarBean.tmZone}"
+ immediate="#{calendarBean.immediate}"
onbeforedomupdate="#{event.onbeforedomupdate}"
onchanged="#{event.onchanged}" oncollapse="#{event.oncollapse}"
oncomplete="#{event.oncomplete}"
@@ -160,7 +162,18 @@
oninputkeyup="#{event.oninputkeyup}"
oninputselect="#{event.oninputselect}"
ontimeselect="#{event.ontimeselect}"
- ontimeselected="#{event.ontimeselected}">
+ ontimeselected="#{event.ontimeselected}"
+
+ firstWeekDay="#{calendarBean.firstWeekDay}"
+ defaultTime="#{calendarBean.defaultTime}"
+ resetTimeOnDateSelect="#{calendarBean.resetTimeOnDateSelect}"
+ horizontalOffset="#{calendarBean.horizontalOffset}"
+ verticalOffset="#{calendarBean.verticalOffset}"
+ inputSize="#{calendarBean.inputSize}"
+ showApplyButton="#{calendarBean.showApplyButton}"
+ showWeekDaysBar="#{calendarBean.showWeekDaysBar}"
+ showWeeksBar="#{calendarBean.showWeeksBar}"
+ >
<f:facet name="weekDay">
<f:verbatim>
Modified: trunk/test-applications/jsp/src/main/webapp/Calendar/CalendarProperty.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/Calendar/CalendarProperty.jsp 2008-12-14 22:03:12 UTC (rev 11764)
+++ trunk/test-applications/jsp/src/main/webapp/Calendar/CalendarProperty.jsp 2008-12-15 11:20:15 UTC (rev 11765)
@@ -163,15 +163,6 @@
itemValue="Korea Standard Time" />
</h:selectOneRadio>
-
- <h:outputText value="ToolTip Mode:" />
- <h:selectOneRadio value="#{calendarBean.toolTipMode}"
- onchange="submit();">
- <f:selectItem itemLabel="none" itemValue="none" />
- <f:selectItem itemLabel="single" itemValue="single" />
- <f:selectItem itemLabel="batch" itemValue="batch" />
- </h:selectOneRadio>
-
<h:outputText value="BoundaryDatesMode:" />
<h:selectOneRadio onclick="submit()" value="#{calendarBean.boundary}">
<f:selectItem itemLabel="inactive" itemValue="inactive" />
Modified: trunk/test-applications/jsp/src/main/webapp/ProgressBar/ProgressBar.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/ProgressBar/ProgressBar.jsp 2008-12-14 22:03:12 UTC (rev 11764)
+++ trunk/test-applications/jsp/src/main/webapp/ProgressBar/ProgressBar.jsp 2008-12-15 11:20:15 UTC (rev 11765)
@@ -51,8 +51,9 @@
onclick="alert($('formID:progressBarSubviewID:progressBarID').component.getValue())"></a4j:commandButton>
<a4j:commandLink value="setLabel"
onclick="$('formID:progressBarSubviewID:progressBarID').component.setLabel('setLabel work')"></a4j:commandLink>
- <a4j:commandLink value="setValue(0)"
- onclick="$('formID:progressBarSubviewID:progressBarID').component.setValue('0')"></a4j:commandLink>
+ <a4j:commandLink value="setValue(5)"
+ onclick="$('formID:progressBarSubviewID:progressBarID').component.setValue('5')"></a4j:commandLink>
+
<a4j:commandLink value="disable"
onclick="$('formID:progressBarSubviewID:progressBarID').component.disable();"></a4j:commandLink>
<a4j:commandLink value="enable"
@@ -65,7 +66,7 @@
<br />
<a href="#" id="setLabelID">setLabel</a>
<br />
- <a href="#" id="setValueID">setValue(0)</a>
+ <a href="#" id="setValueID">setValue(10)</a>
<br />
<a href="#" id="disableID">disable</a>
<br />
@@ -76,7 +77,9 @@
<f:param name="label" value="new label" />
</rich:componentControl>
<rich:componentControl attachTo="setValueID" event="onclick"
- for="progressBarID" operation="setValue" params="value:0"></rich:componentControl>
+ for="progressBarID" operation="setValue">
+ <f:param name="value" value="10"/>
+ </rich:componentControl>
<rich:componentControl attachTo="disableID" event="onclick"
for="progressBarID" operation="disable"></rich:componentControl>
<rich:componentControl attachTo="enableID" event="onclick"
More information about the richfaces-svn-commits
mailing list