[richfaces-svn-commits] JBoss Rich Faces SVN: r5715 - in trunk/sandbox/ui/pickList/src/main: resources/org/richfaces/renderkit/html/css and 2 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Jan 29 14:21:45 EST 2008


Author: vmolotkov
Date: 2008-01-29 14:21:45 -0500 (Tue, 29 Jan 2008)
New Revision: 5715

Modified:
   trunk/sandbox/ui/pickList/src/main/java/org/richfaces/renderkit/PickListRenderer.java
   trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss
   trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/scripts/PickList.js
   trunk/sandbox/ui/pickList/src/main/templates/htmlPickList.jspx
Log:
css classes are changed

Modified: trunk/sandbox/ui/pickList/src/main/java/org/richfaces/renderkit/PickListRenderer.java
===================================================================
--- trunk/sandbox/ui/pickList/src/main/java/org/richfaces/renderkit/PickListRenderer.java	2008-01-29 19:19:34 UTC (rev 5714)
+++ trunk/sandbox/ui/pickList/src/main/java/org/richfaces/renderkit/PickListRenderer.java	2008-01-29 19:21:45 UTC (rev 5715)
@@ -191,11 +191,11 @@
 		    StringBuffer rowClassName = new StringBuffer();
 		    StringBuffer cellClassName = new StringBuffer();
 		    if (source) {
-			rowClassName.append("rich-shuttle-source-row");
-			cellClassName.append("rich-shuttle-source-cell");
+			rowClassName.append("rich-pickList-source-row");
+			cellClassName.append("rich-pickList-source-cell");
 		    } else {
-			rowClassName.append("rich-shuttle-target-row");
-			cellClassName.append("rich-shuttle-target-cell");
+			rowClassName.append("rich-pickList-target-row");
+			cellClassName.append("rich-pickList-target-cell");
 		    }
 		    
 		    /*
@@ -297,41 +297,6 @@
 	    writer.endElement(HTML.IMG_ELEMENT);
 	}
 	
-	 private void encodeSwapButton(FacesContext context, UIComponent component, String javaScriptFunction, 
-			 	  boolean isRight,ResponseWriter writer) throws IOException {
-
-		writer.startElement(HTML.BUTTON, component);
-		String buttonStyle = (String)component.getAttributes().get("buttonStyle");
-		String buttonStyleClass = (String)component.getAttributes().get("buttonStyleClass");
-
-		writer.writeAttribute(HTML.class_ATTRIBUTE, "rich-pick-button" , null);
-		writer.writeAttribute(HTML.style_ATTRIBUTE, buttonStyle, null);
-		writer.writeAttribute(HTML.STYLE_CLASS_ATTR, buttonStyleClass, null);
-				
-		writer.writeAttribute("onmouseout", "this.className='rich-pick-button'", null);
-		writer.writeAttribute("onmouseup", "this.className='rich-pick-button'", null);
-		writer.writeAttribute("onmousedown", "this.className='rich-pick-button-press'", null);
-		writer.writeAttribute("onmouseover", "this.className='rich-pick-button-light'", null);
-		
-		writer.writeAttribute(HTML.onclick_ATTRIBUTE, javaScriptFunction + "; return false;", null);
-		writer.startElement(HTML.IMG_ELEMENT, component);
-		String arrowURI = null;
-		
-		if(isRight) {
-			arrowURI = getResource("org.richfaces.renderkit.images.PickListRightArrowImage").getUri(context, component);
-		}	else {
-			arrowURI = getResource("org.richfaces.renderkit.images.PickListLeftArrowImage").getUri(context, component);
-		}
-		
-		writer.writeAttribute(HTML.src_ATTRIBUTE, arrowURI, null);
-		writer.writeAttribute(HTML.width_ATTRIBUTE, "15", null);
-		writer.writeAttribute(HTML.height_ATTRIBUTE, "15", null);
-		writer.writeAttribute(HTML.alt_ATTRIBUTE, "", null);
-		writer.writeAttribute(HTML.border_ATTRIBUTE, "0", null);
-		writer.endElement(HTML.IMG_ELEMENT);
-		writer.endElement(HTML.BUTTON);
-	 }
-	 
 	 public void encodeHiddenField(FacesContext context, UIComponent component) throws IOException {
 	     UIPickList pl = (UIPickList) component;
 	     ResponseWriter writer = context.getResponseWriter();
@@ -414,40 +379,40 @@
         	
         	for (int i = 0; i < SHUTTLE_HELPERS.length; i++) {
         			encodeControlFacet(context, component, SHUTTLE_HELPERS[i], clientId, writer, true, 
-        					"rich-list-shuttle-button", " rich-shuttle-control");
+        					"rich-list-pickList-button", " rich-pickList-control");
         	}
 	}
 	
 	protected void encodeControlFacet(FacesContext context,
-		UIComponent component, OrderingComponentRendererBase.ControlsHelper helper,
-		String clientId, ResponseWriter writer, boolean enabled, String baseStyle, 
-		String baseControlStyle) throws IOException {
-	Locale locale = null;
-	
-	UIViewRoot viewRoot = context.getViewRoot();
-	if (viewRoot != null) {
-		locale = viewRoot.getLocale();
+					  UIComponent component, OrderingComponentRendererBase.ControlsHelper helper,
+					  String clientId, ResponseWriter writer, boolean enabled, String baseStyle, 
+					  String baseControlStyle) throws IOException {
+        	Locale locale = null;
+        	
+        	UIViewRoot viewRoot = context.getViewRoot();
+        	if (viewRoot != null) {
+        		locale = viewRoot.getLocale();
+        	}
+        	
+        	ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
+        	ResourceBundle bundle = null;
+        	
+        	if (locale != null) {
+        		try {
+        			bundle = ResourceBundle.getBundle(bundleName, locale, contextClassLoader);
+        		} catch (MissingResourceException e) {
+        
+        		}
+        	}
+        	
+        	Map attributes = component.getAttributes();
+        	UIComponent facet = component.getFacet(helper.getFacetName());
+        	boolean useFacet = (facet != null && facet.isRendered());
+        
+        		renderDefaultControl(context, component, writer, useFacet,
+        							 helper, clientId, bundle ,enabled, baseStyle, baseControlStyle);
 	}
 	
-	ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
-	ResourceBundle bundle = null;
-	
-	if (locale != null) {
-		try {
-			bundle = ResourceBundle.getBundle(bundleName, locale, contextClassLoader);
-		} catch (MissingResourceException e) {
-
-		}
-	}
-	
-	Map attributes = component.getAttributes();
-	UIComponent facet = component.getFacet(helper.getFacetName());
-	boolean useFacet = (facet != null && facet.isRendered());
-
-		renderDefaultControl(context, component, writer, useFacet,
-							 helper, clientId, bundle ,enabled, baseStyle, baseControlStyle);
-	}
-	
 	protected void renderDefaultControl(FacesContext context,
 		UIComponent orderingList, ResponseWriter writer,
 		boolean useFacet, OrderingComponentRendererBase.ControlsHelper helper, String clientId, ResourceBundle bundle, 

Modified: trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss
===================================================================
--- trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss	2008-01-29 19:19:34 UTC (rev 5714)
+++ trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss	2008-01-29 19:21:45 UTC (rev 5715)
@@ -5,19 +5,19 @@
 
 <f:verbatim><![CDATA[
 
-.rich-shuttle-controls {
+.rich-pickList-controls {
 	padding : 0px 8px 5px 8px;
 }
 
-.rich-shuttle-list-content {
+.rich-pickList-list-content {
 	overflow: auto;
 }
 
-.rich-shuttle-list-header {
+.rich-pickList-list-header {
 	overflow: hidden;
 }
 
-.rich-shuttle-header-tab-cell, .rich-shuttle-header-tab-cell-last {
+.rich-pickList-header-tab-cell, .rich-pickList-header-tab-cell-last {
 	padding : 2px;
 	border-style: solid;
 	font-weight: normal;
@@ -27,7 +27,7 @@
 	border-left: 0px;
 }
 
-.rich-shuttle-internal-tab {
+.rich-pickList-internal-tab {
 	width:100%;
 }
 
@@ -37,13 +37,13 @@
 ]]>
 </f:verbatim>
 
-<u:selector name=".rich-shuttle-list">
+<u:selector name=".rich-pickList-list">
 	<u:style name="background-color" skin="tableBackgroundColor"/>
 	<u:style name="border-width" value="0px" />
 	<u:style name="border-style" value="none" />
 </u:selector>
 
-<u:selector name=".rich-shuttle-source-cell, .rich-shuttle-target-cell, .rich-shuttle-source-cell *, .rich-shuttle-target-cell *">
+<u:selector name=".rich-pickList-source-cell, .rich-pickList-target-cell, .rich-pickList-source-cell *, .rich-pickList-target-cell *">
 	<u:style name="color" skin="generalTextColor"/>
 	<u:style name="font-size" skin="generalSizeFont"/>
 	<u:style name="font-family" skin="generalFamilyFont"/>
@@ -52,105 +52,105 @@
 
 <f:verbatim><![CDATA[
 
-.rich-shuttle-control-disabled, .rich-shuttle-control-top, .rich-shuttle-control-bottom, 
-.rich-shuttle-control-up, .rich-shuttle-control-down, .rich-shuttle-control-copyall,
-.rich-shuttle-control-copy, .rich-shuttle-control-remove, .rich-shuttle-control-removeall {
+.rich-pickList-control-disabled, .rich-pickList-control-top, .rich-pickList-control-bottom, 
+.rich-pickList-control-up, .rich-pickList-control-down, .rich-pickList-control-copyall,
+.rich-pickList-control-copy, .rich-pickList-control-remove, .rich-pickList-control-removeall {
 	border : 1px solid;
 	margin-bottom : 3px;
 }
 
-.rich-list-shuttle-button, .rich-list-shuttle-button-disabled {
+.rich-list-pickList-button, .rich-list-pickList-button-disabled {
 	background : top left repeat-x;
 	padding : 2px;
 }
 
-.rich-list-shuttle-button {
+.rich-list-pickList-button {
 	cursor : pointer;
 }
 
-.rich-list-shuttle-button-light {
+.rich-list-pickList-button-light {
 	background : top left repeat-x;
 	border-style: solid;
 	cursor : pointer;
 	padding: 1px;
 }
 
-.rich-list-shuttle-button-press {
+.rich-list-pickList-button-press {
 	background : top left repeat-x;
 	border-style: solid;
 	padding : 2px 0px 0px 2px;
 }
 
-.rich-list-shuttle-button-valign {
+.rich-list-pickList-button-valign {
 	vertical-align : middle;
 }
 
-.rich-list-shuttle-button-layout {
+.rich-list-pickList-button-layout {
 	padding : 15px 8px 15px 0px;
 }
 
-.rich-list-shuttle-button-content {
+.rich-list-pickList-button-content {
 	padding : 0px 4px 0px 1px;
 	text-align : left;
 	white-space: nowrap;
 }
 
-.rich-list-shuttle-button-content img {
+.rich-list-pickList-button-content img {
 	margin-right: 2px;
 	vertical-align: middle;
 }
 
-a.rich-list-shuttle-button-selection:visited,
-a.rich-list-shuttle-button-selection:link {
+a.rich-list-pickList-button-selection:visited,
+a.rich-list-pickList-button-selection:link {
 	color: inherit;
 }
 
-.rich-list-shuttle-button-a-disabled {
+.rich-list-pickList-button-a-disabled {
 	cursor: default;
 	text-decoration: none;
 }
 
-.rich-list-shuttle-caption {
+.rich-list-pickList-caption {
 	text-align: left;
 	padding : 1px;
 }
 
-.rich-shuttle-source-caption {
+.rich-pickList-source-caption {
 	padding: 3px 3px 3px 8px;
 }
 
-.rich-shuttle-target-caption {
+.rich-pickList-target-caption {
 	padding: 3px 3px 3px 0px;
 }
 
-.rich-shuttle-source-items {
+.rich-pickList-source-items {
 	margin: 0px 0px 8px 8px;
 }
 
-.rich-shuttle-target-items {
+.rich-pickList-target-items {
 	margin: 0px 0px 8px 0px;
 }
 
-.rich-shuttle-source-row-active, .rich-shuttle-target-row-active {
+.rich-pickList-source-row-active, .rich-pickList-target-row-active {
 	background : transparent none repeat-x scroll left top;
 }
 
-.rich-shuttle-source-row-selected, .rich-shuttle-target-row-selected {
+.rich-pickList-source-row-selected, .rich-pickList-target-row-selected {
 	background : transparent none repeat-x scroll left top;
 }
 
-.rich-shuttle-source-cell, .rich-shuttle-target-cell {
+.rich-pickList-source-cell, .rich-pickList-target-cell {
 	padding : 2px;
 	white-space: nowrap;
 	border: 0px;
 }
 
-.rich-shuttle-source-cell-selected, .rich-shuttle-target-cell-selected {
+.rich-pickList-source-cell-selected, .rich-pickList-target-cell-selected {
 	padding : 2px;
 	white-space: nowrap;
 }
 
-.rich-shuttle-source-cell-active, .rich-shuttle-target-cell-active {
+.rich-pickList-source-cell-active, .rich-pickList-target-cell-active {
 	padding: 1px 2px;
 	white-space: nowrap;
 	border-top: 1px dotted;
@@ -160,7 +160,7 @@
 ]]>
 </f:verbatim>
 
-	<u:selector name=".rich-list-shuttle">
+	<u:selector name=".rich-list-pickList">
 		<!--u:style name="background-color" skin="additionalBackgroundColor" />
 		<u:style name="border-color" skin="tableBorderColor" />
 		<u:style name="border-width" skin="tableBorderWidth" />
@@ -168,7 +168,7 @@
 		<u:style name="-moz-user-select" value="-moz-none" />
 	</u:selector>
 
-	<u:selector name=".rich-shuttle-header-tab-cell, .rich-shuttle-header-tab-cell-last">
+	<u:selector name=".rich-pickList-header-tab-cell, .rich-pickList-header-tab-cell-last">
 		<u:style name="background-image">
 			<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListHeaderGradient" />
 		</u:style>
@@ -184,11 +184,11 @@
 		<u:style name="border-bottom-color" skin="tableBorderColor" />
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-header-tab-cell-last">
+	<u:selector name=".rich-pickList-header-tab-cell-last">
 		<u:style name="border-right-width" value="0px" />
 	</u:selector>
 
-<u:selector name=".rich-list-shuttle-button">
+<u:selector name=".rich-list-pickList-button">
 	<u:style name="background-image">
 		<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListButtonGradient" />
 	</u:style>
@@ -198,7 +198,7 @@
 	<u:style name="font-size" skin="headerSizeFont"/>
 </u:selector>
 
-<u:selector name=".rich-list-shuttle-button-disabled">
+<u:selector name=".rich-list-pickList-button-disabled">
 	<u:style name="background-image">
 		<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListButtonGradient" />
 	</u:style>
@@ -208,7 +208,7 @@
 	<u:style name="font-size" skin="headerSizeFont"/>
 </u:selector>
 
-	<u:selector name=".rich-list-shuttle-button-light">
+	<u:selector name=".rich-list-pickList-button-light">
 		<u:style name="background-image">
 			<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListButtonGradient" />
 		</u:style>
@@ -220,7 +220,7 @@
 		<u:style name="color" skin="generalTextColor"/>
 	</u:selector>
 
-	<u:selector name=".rich-list-shuttle-button-press">
+	<u:selector name=".rich-list-pickList-button-press">
 		<u:style name="background-image">
 			<f:resource f:key="org.richfaces.renderkit.html.gradientimages.OrderingListClickedGradient" />
 		</u:style>
@@ -232,24 +232,24 @@
 		<u:style name="color" skin="generalTextColor"/>
 	</u:selector>
 
-	<u:selector name=".rich-shuttle-source-cell-last, .rich-shuttle-target-cell-last">
+	<u:selector name=".rich-pickList-source-cell-last, .rich-pickList-target-cell-last">
 		<u:style name="border-right-color" skin="selectControlColor" />
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-source-items, .rich-shuttle-target-items">
+	<u:selector name=".rich-pickList-source-items, .rich-pickList-target-items">
 		<u:style name="background-color" skin="generalBackgroundColor" />
 		<u:style name="border-color" skin="tableBorderColor" />
 		<u:style name="border-width" skin="tableBorderWidth" />
 		<u:style name="border-style" value="solid" />
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-source-cell-selected, .rich-shuttle-target-cell-selected, .rich-shuttle-source-cell-selected *, .rich-shuttle-target-cell-selected *">
+	<u:selector name=".rich-pickList-source-cell-selected, .rich-pickList-target-cell-selected, .rich-pickList-source-cell-selected *, .rich-pickList-target-cell-selected *">
 		<u:style name="color" skin="generalTextColor"/>
 		<u:style name="font-family" skin="generalFamilyFont" />
 		<u:style name="font-size" skin="generalSizeFont" />
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-source-cell-active, .rich-shuttle-target-cell-active, .rich-shuttle-source-cell-active *, .rich-shuttle-target-cell-active *">
+	<u:selector name=".rich-pickList-source-cell-active, .rich-pickList-target-cell-active, .rich-pickList-source-cell-active *, .rich-pickList-target-cell-active *">
 		<u:style name="font-size" skin="generalSizeFont" />
 		<u:style name="font-family" skin="generalFamilyFont" />
 	</u:selector>
@@ -258,32 +258,32 @@
 		<u:style name="border-bottom-color" skin="generalTextColor" />
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-control-disabled, .rich-shuttle-control-top, .rich-shuttle-control-bottom, .rich-shuttle-control-up, .rich-shuttle-control-down, .rich-shuttle-control-copyall, .rich-shuttle-control-copy, .rich-shuttle-control-remove, .rich-shuttle-control-removeall">
+	<u:selector name=".rich-pickList-control-disabled, .rich-pickList-control-top, .rich-pickList-control-bottom, .rich-pickList-control-up, .rich-pickList-control-down, .rich-pickList-control-copyall, .rich-pickList-control-copy, .rich-pickList-control-remove, .rich-pickList-control-removeall">
 		<u:style name="border-color" skin="tableBorderColor" />
 	</u:selector>
 	
-	<u:selector name=".rich-list-shuttle-button-content">
+	<u:selector name=".rich-list-pickList-button-content">
 		<u:style name="font-family" skin="headerFamilyFont" />
 		<u:style name="font-size" skin="headerSizeFont" />
 	</u:selector>
 	
-	<u:selector name=".rich-list-shuttle-button-selection">
+	<u:selector name=".rich-list-pickList-button-selection">
 		<u:style name="color" skin="generalTextColor" />
 		<u:style name="text-decoration" value="none" />
 		<u:style name="display" value="block" />
 	</u:selector>
 	
-	<u:selector name="a.rich-list-shuttle-button-a-disabled a">
+	<u:selector name="a.rich-list-pickList-button-a-disabled a">
 		<u:style name="color" skin="tabDisabledTextColor"/>
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-source-caption, .rich-shuttle-target-caption">
+	<u:selector name=".rich-pickList-source-caption, .rich-pickList-target-caption">
 		<u:style name="font-family" skin="headerFamilyFont" />
 		<u:style name="font-size" skin="headerSizeFont" />
 		<u:style name="font-weight" skin="headerWeightFont" />
 	</u:selector>
 	
-	<u:selector name=".rich-shuttle-source-row-selected, .rich-shuttle-target-row-selected">
+	<u:selector name=".rich-pickList-source-row-selected, .rich-pickList-target-row-selected">
 		<u:style name="background-color" skin="additionalBackgroundColor" />
 	</u:selector>
 }

Modified: trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/scripts/PickList.js
===================================================================
--- trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/scripts/PickList.js	2008-01-29 19:19:34 UTC (rev 5714)
+++ trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/scripts/PickList.js	2008-01-29 19:21:45 UTC (rev 5715)
@@ -64,36 +64,36 @@
 Richfaces.PickList.Source.SelectItem = Class.create(Richfaces.PickListSI);
 Richfaces.PickList.Source.SelectItem.prototype.CLASSES = {
 	ROW : {
-		ACTIVE   : "rich-shuttle-source-row-active",
-		SELECTED : "rich-shuttle-source-row-selected",
-		DISABLED : "rich-shuttle-source-row-disabled",
-		NORMAL   : "rich-shuttle-source-row"
+		ACTIVE   : "rich-pickList-source-row-active",
+		SELECTED : "rich-pickList-source-row-selected",
+		DISABLED : "rich-pickList-source-row-disabled",
+		NORMAL   : "rich-pickList-source-row"
 	},
 	CELL : {
-		ACTIVE   : "rich-shuttle-source-cell-active",
-		SELECTED : "rich-shuttle-source-cell-selected",
-		DISABLED : "rich-shuttle-source-cell-disabled",
-		NORMAL   : "rich-shuttle-source-cell",
-		BEGIN:	" rich-shuttle-source-cell-first",
-		END:	" rich-shuttle-source-cell-last"
+		ACTIVE   : "rich-pickList-source-cell-active",
+		SELECTED : "rich-pickList-source-cell-selected",
+		DISABLED : "rich-pickList-source-cell-disabled",
+		NORMAL   : "rich-pickList-source-cell",
+		BEGIN:	" rich-pickList-source-cell-first",
+		END:	" rich-pickList-source-cell-last"
 	}
 };
 
 Richfaces.PickList.Target.SelectItem = Class.create(Richfaces.PickListSI);
 Richfaces.PickList.Target.SelectItem.prototype.CLASSES = {
 	ROW : {
-		ACTIVE   : "rich-shuttle-target-row-active",
-		SELECTED : "rich-shuttle-target-row-selected",
-		DISABLED : "rich-shuttle-target-row-disabled",
-		NORMAL   : "rich-shuttle-target-row"
+		ACTIVE   : "rich-pickList-target-row-active",
+		SELECTED : "rich-pickList-target-row-selected",
+		DISABLED : "rich-pickList-target-row-disabled",
+		NORMAL   : "rich-pickList-target-row"
 	},
 	CELL : {
-		ACTIVE   : "rich-shuttle-target-cell-active",
-		SELECTED : "rich-shuttle-target-cell-selected",
-		DISABLED : "rich-shuttle-target-cell-disabled",
-		NORMAL   : "rich-shuttle-target-cell",
-		BEGIN:	" rich-shuttle-target-cell-first",
-		END:	" rich-shuttle-target-cell-last"
+		ACTIVE   : "rich-pickList-target-cell-active",
+		SELECTED : "rich-pickList-target-cell-selected",
+		DISABLED : "rich-pickList-target-cell-disabled",
+		NORMAL   : "rich-pickList-target-cell",
+		BEGIN:	" rich-pickList-target-cell-first",
+		END:	" rich-pickList-target-cell-last"
 	}
 };
 

Modified: trunk/sandbox/ui/pickList/src/main/templates/htmlPickList.jspx
===================================================================
--- trunk/sandbox/ui/pickList/src/main/templates/htmlPickList.jspx	2008-01-29 19:19:34 UTC (rev 5714)
+++ trunk/sandbox/ui/pickList/src/main/templates/htmlPickList.jspx	2008-01-29 19:21:45 UTC (rev 5715)
@@ -29,7 +29,7 @@
 	
 	<f:clientId var="clientId"/>
 	
-	<table id="#{clientId}" class="rich-list-shuttle #{component.attributes['styleClass']}"
+	<table id="#{clientId}" class="rich-list-pickList #{component.attributes['styleClass']}"
 			cellspacing="0" cellpadding="0"
 			x:passThruWithExclusions="id, class, styleClass">
 		<tbody>
@@ -55,10 +55,10 @@
 
 				<tr>
 					<td>
-					    <div class="rich-shuttle-source-items #{component.listClass}">
+					    <div class="rich-pickList-source-items #{component.listClass}">
 					    	<input id="#{clientId}focusKeeper" type="button" value="" style="width: 1px; position: absolute; left: -32767px;"/>
 							
-							<table id="#{clientId}table" cellpadding="0" cellspacing="0" class="rich-shuttle-body">
+							<table id="#{clientId}table" cellpadding="0" cellspacing="0" class="rich-pickList-body">
 								<tbody>
 									<tr>
 										<td style="border:0px;padding : 0px;">
@@ -82,8 +82,8 @@
 									                	}
 	                								]]>
 	                							</jsp:scriptlet>
-												<div id="#{clientId}contentBox" class="rich-shuttle-list-content" style="#{contentContainerStyle}">
-													<table id="#{clientId}internal_tab" class="rich-shuttle-internal-tab" cellpadding="0" cellspacing="0">
+												<div id="#{clientId}contentBox" class="rich-pickList-list-content" style="#{contentContainerStyle}">
+													<table id="#{clientId}internal_tab" class="rich-pickList-internal-tab" cellpadding="0" cellspacing="0">
 														<tbody id="#{clientId}tbody">
 															<f:call name="encodeSourceRows" />
 														</tbody>
@@ -97,7 +97,7 @@
 						</div> 
 					</td>
 					<td style="vertical-align: #{component.moveControlsVerticalAlign};" >
-						<div class="rich-shuttle-controls">
+						<div class="rich-pickList-controls">
 							<jsp:scriptlet><![CDATA[
 								encodePickListControlsFacets(context, component);
 							]]></jsp:scriptlet>
@@ -105,16 +105,16 @@
 	
 					</td>
 					<td>
-						<div class="rich-shuttle-target-items #{component.listClass}" >
+						<div class="rich-pickList-target-items #{component.listClass}" >
 							<input type="hidden" value=":" style="display: none;" name="#{baseClientId}" />
 							<f:call name="encodeHiddenField" />
 					    	<input id="#{clientId}tlFocusKeeper" type="button" value="" style="width: 1px; position: absolute; left: -32767px;"/>
 							
-							<table id="#{clientId}tlTable" cellpadding="0" cellspacing="0" class="rich-shuttle-body">
+							<table id="#{clientId}tlTable" cellpadding="0" cellspacing="0" class="rich-pickList-body">
 								<tbody>
 									<tr>
 										<td style="border:0px;padding : 0px;">
-											<div id="#{clientId}tlHeaderBox" class="rich-shuttle-list">
+											<div id="#{clientId}tlHeaderBox" class="rich-pickList-list">
 												<jsp:scriptlet>
 													<![CDATA[
 									                	String trContentContainerStyle = "";
@@ -133,8 +133,8 @@
 									                	}
 		                							]]>
 		                						</jsp:scriptlet>
-												<div id="#{clientId}tlContentBox" class="rich-shuttle-list-content" style="#{trContentContainerStyle}">
-													<table id="#{clientId}tlInternal_tab" class="rich-shuttle-internal-tab" cellpadding="0" cellspacing="0">
+												<div id="#{clientId}tlContentBox" class="rich-pickList-list-content" style="#{trContentContainerStyle}">
+													<table id="#{clientId}tlInternal_tab" class="rich-pickList-internal-tab" cellpadding="0" cellspacing="0">
 														<tbody id="#{clientId}tlTbody">
 															<f:call name="encodeTargetRows" />
 														</tbody>




More information about the richfaces-svn-commits mailing list