Author: mvitenkov
Date: 2008-06-18 07:17:05 -0400 (Wed, 18 Jun 2008)
New Revision: 9092
Modified:
trunk/test-applications/jsp/src/main/webapp/OrderingList/OrderingList.jsp
Log:
Modified: trunk/test-applications/jsp/src/main/webapp/OrderingList/OrderingList.jsp
===================================================================
--- trunk/test-applications/jsp/src/main/webapp/OrderingList/OrderingList.jsp 2008-06-18
10:07:52 UTC (rev 9091)
+++ trunk/test-applications/jsp/src/main/webapp/OrderingList/OrderingList.jsp 2008-06-18
11:17:05 UTC (rev 9092)
@@ -97,7 +97,7 @@
</rich:orderingList>
<h:panelGrid columns="3">
<h:column></h:column>
- <h:outputText value="JavaScript API"></h:outputText>
+ <h:outputText value="JavaScript API" style="FONT-WEIGHT:
bold;"></h:outputText>
<h:column></h:column>
<a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.hide()"
value="hide()"></a4j:commandLink>
<a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.show()"
value="show()"></a4j:commandLink>
@@ -105,15 +105,43 @@
<a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.ebnable()"
value="ebnable()"></a4j:commandLink>
<a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.disable()"
value="disable()"></a4j:commandLink>
<a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.isEnabled()"
value="isEnabled()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.Up()"
value="Up()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveUp()"
value="moveUp()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.Down()"
value="Down()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveDown()"
value="moveDown()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.Top()"
value="Top()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveTop()"
value="moveTop()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.Bottom()"
value="Bottom()"></a4j:commandLink>
- <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveBottom()"
value="moveBottom()"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.up()"
value="up()"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveUp()"
value="moveUp()-old"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.down()"
value="down()"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveDown()"
value="moveDown()-old"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.top()"
value="top()"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveTop()"
value="moveTop()-old"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.bottom()"
value="bottom()"></a4j:commandLink>
+ <a4j:commandLink
onclick="$('formID:orderingListSubviewID:orderingListID').component.moveBottom()"
value="moveBottom()-old"></a4j:commandLink>
<a4j:commandLink
onclick="alert($('formID:orderingListSubviewID:orderingListID').component.getSelection())"
value="getSelection()"></a4j:commandLink>
<a4j:commandLink
onclick="alert($('formID:orderingListSubviewID:orderingListID').component.getItems())"
value="getItems()"></a4j:commandLink>
</h:panelGrid>
+ <f:verbatim>
+ <h:outputText value="Component Control test" style="FONT-WEIGHT:
bold;"></h:outputText>
+ <a href="#" id="hideID">hide()</a>
+ <a href="#" id="showID">show()</a>
+ <a href="#" id="isShownID">isShown()</a>
+ <a href="#" id="enableID">enable()</a>
+ <a href="#" id="disableID">disable()</a>
+ <a href="#" id="isEnabledID">isEnabled()</a>
+ <a href="#" id="upID">up()</a>
+ <a href="#" id="downID">down()</a>
+ <a href="#" id="topID">top()</a>
+ <a href="#" id="bottomID">bottom()</a>
+ <a href="#" id="getSelectionID">getSelection()</a>
+ <a href="#" id="getItemsID">getItems()</a>
+ </f:verbatim>
+ <rich:componentControl attachTo="hideID" event="onclick"
for="orderingListID"
operation="hide()"></rich:componentControl>
+ <rich:componentControl attachTo="showID" event="onclick"
for="orderingListID"
operation="show()"></rich:componentControl>
+ <rich:componentControl attachTo="isShownID" event="onclick"
for="orderingListID"
operation="isShown()"></rich:componentControl>
+ <rich:componentControl attachTo="enableID" event="onclick"
for="orderingListID"
operation="enable()"></rich:componentControl>
+ <rich:componentControl attachTo="disableID" event="onclick"
for="orderingListID"
operation="disable()"></rich:componentControl>
+ <rich:componentControl attachTo="isEnabledID" event="onclick"
for="orderingListID"
operation="isEnabled()"></rich:componentControl>
+ <rich:componentControl attachTo="upID" event="onclick"
for="orderingListID"
operation="up()"></rich:componentControl>
+ <rich:componentControl attachTo="downID" event="onclick"
for="orderingListID"
operation="down()"></rich:componentControl>
+ <rich:componentControl attachTo="topID" event="onclick"
for="orderingListID"
operation="top()"></rich:componentControl>
+ <rich:componentControl attachTo="bottomID" event="onclick"
for="orderingListID"
operation="bottom()"></rich:componentControl>
+ <rich:componentControl attachTo="getSelectionID" event="onclick"
for="orderingListID"
operation="alert(getSelection())"></rich:componentControl>
+ <rich:componentControl attachTo="getItemsID" event="onclick"
for="orderingListID"
operation="alert(getItems())"></rich:componentControl>
+
</f:subview>
\ No newline at end of file
Show replies by date