[jbosstools-commits] JBoss Tools SVN: r23830 - trunk/vpe/plugins/org.jboss.tools.vpe.spring/templates.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri Jul 30 05:43:03 EDT 2010


Author: yradtsevich
Date: 2010-07-30 05:43:02 -0400 (Fri, 30 Jul 2010)
New Revision: 23830

Modified:
   trunk/vpe/plugins/org.jboss.tools.vpe.spring/templates/vpe-templates-spring.xml
Log:
https://jira.jboss.org/browse/JBIDE-6711
- form:radiobuttons template is added

Modified: trunk/vpe/plugins/org.jboss.tools.vpe.spring/templates/vpe-templates-spring.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.spring/templates/vpe-templates-spring.xml	2010-07-30 09:32:08 UTC (rev 23829)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.spring/templates/vpe-templates-spring.xml	2010-07-30 09:43:02 UTC (rev 23830)
@@ -333,6 +333,63 @@
 			</vpe:dnd>
 		</vpe:template>
 	</vpe:tag>
+	
+	<vpe:tag name="form:radiobuttons" case-sensitive="yes">
+		<vpe:if test="@disabled='true'">
+			<vpe:if test="attrpresent('itemLabel')">
+				<vpe:template children="no" modify="no">
+					<span class="vpe-text">
+						<input type="radio" id="{@id}" style="{@cssStyle}" class="{@cssClass}"
+							disabled="disabled" name="{@path}"/>
+						<label>
+							<vpe:value expr="{@items}.{@itemLabel}" />
+						</label>
+					</span>
+					<vpe:dnd>
+						<vpe:drag start-enable="yes" />
+					</vpe:dnd>
+				</vpe:template>
+			</vpe:if>
+			<vpe:template children="no" modify="no">
+					<span class="vpe-text">
+						<input type="radio" id="{@id}" style="{@cssStyle}" class="{@cssClass}"
+							disabled="disabled" name="{@path}"/>
+						<label>
+							<vpe:value expr="{@items}" />
+						</label>
+					</span>
+					<vpe:dnd>
+						<vpe:drag start-enable="yes" />
+					</vpe:dnd>
+			</vpe:template>
+		</vpe:if>
+		<vpe:if test="attrpresent('itemLabel')">
+			<vpe:template children="no" modify="no">
+				<span class="vpe-text">
+					<input type="radio" id="{@id}" style="{@cssStyle}" class="{@cssClass}"
+						name="{@path}"/>
+					<label>
+						<vpe:value expr="{@items}.{@itemLabel}" />
+					</label>
+				</span>
+				<vpe:dnd>
+					<vpe:drag start-enable="yes" />
+				</vpe:dnd>
+			</vpe:template>
+		</vpe:if>
+		<vpe:template children="no" modify="no">
+			<span class="vpe-text">
+				<input type="radio" id="{@id}" style="{@cssStyle}" class="{@cssClass}"
+					name="{@path}"/>
+				<label>
+					<vpe:value expr="{@items}" />
+				</label>
+			</span>
+			<vpe:dnd>
+				<vpe:drag start-enable="yes" />
+			</vpe:dnd>
+		</vpe:template>
+	</vpe:tag>
 
 	<vpe:tag name="form:textarea" case-sensitive="yes">
 		<vpe:template children="yes" modify="yes"
@@ -347,7 +404,6 @@
 			<vpe:textFormatting use-default-formats="yes">
 			</vpe:textFormatting>
 		</vpe:template>
-		
 	</vpe:tag>	 
 	
 </vpe:templates>



More information about the jbosstools-commits mailing list