User: walterim
Date: 08/02/25 06:32:35
Modified: andromda-jsf2/src/main/resources/templates/jsf2/views/facelets
view-table.xhtml.vsl view-popup.xhtml.vsl
Log:
Using tr:image instead of t:graphicImage to allow skin handling
Revision Changes Path
1.6 +3 -3 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/facelets/view-table.xhtml.vsl
Index: view-table.xhtml.vsl
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/facelets/view-table.xhtml.vsl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -r1.5 -r1.6
--- view-table.xhtml.vsl 26 Sep 2007 16:11:45 -0000 1.5
+++ view-table.xhtml.vsl 25 Feb 2008 14:32:34 -0000 1.6
@@ -62,7 +62,7 @@
#else
<tr:column>
<f:facet name="header">
- <t:graphicImage url="/images/space.gif"/>
+ <tr:image source="/images/space.gif"/>
</f:facet>
<tr:outputText value="#{row}">
#if ($column.type.dateType)
@@ -76,7 +76,7 @@
#if (!$action.tableLinkColumnName)
<tr:column>
<f:facet name="header">
- <h:panelGroup styleClass="actionColumn"><t:graphicImage url="/images/space.gif"/></h:panelGroup>
+ <h:panelGroup styleClass="actionColumn"><tr:image source="/images/space.gif"/></h:panelGroup>
</f:facet>
<h:panelGroup styleClass="actionColumn">
<tr:commandLink text="#{messages['$action.trigger.messageKey']}" action="#{${action.controller.beanName}.${action.triggerName}}" actionListener="#{${action.controller.beanName}.action}">
@@ -91,7 +91,7 @@
#if (!$action.tableLinkColumnName)
<tr:column>
<f:facet name="header">
- <h:panelGroup styleClass="actionColumn"><t:graphicImage url="/images/space.gif"/></h:panelGroup>
+ <h:panelGroup styleClass="actionColumn"><tr:image source="/images/space.gif"/></h:panelGroup>
</f:facet>
<h:panelGroup styleClass="actionColumn">
<tr:commandButton text="#{messages['$action.trigger.messageKey']}" action="#{${action.controller.beanName}.${action.triggerName}}" actionListener="#{${action.controller.beanName}.action}">
1.2 +1 -1 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/facelets/view-popup.xhtml.vsl
Index: view-popup.xhtml.vsl
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/facelets/view-popup.xhtml.vsl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -r1.1 -r1.2
--- view-popup.xhtml.vsl 5 Dec 2006 19:39:14 -0000 1.1
+++ view-popup.xhtml.vsl 25 Feb 2008 14:32:35 -0000 1.2
@@ -10,7 +10,7 @@
<f:view>
<h:panelGrid id="popupView" columns="1" styleClass="popup">
<h:panelGrid id="popupViewHeader" columns="1" styleClass="popupHeader">
- <h:commandLink action="closePopup"><t:graphicImage url="/images/x.gif" border="0" /></h:commandLink>
+ <h:commandLink action="closePopup"><tr:image source="/images/x.gif"/></h:commandLink>
</h:panelGrid>
#foreach ($action in $view.actions)
#if (!$action.tableLink)
|