User: walterim
Date: 08/02/25 06:35:32
Modified: andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/includes
view-table.jspf.vsl
Log:
Using tr:image instead of t:graphicImage to allow skin handling
Revision Changes Path
1.4 +3 -3 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/includes/view-table.jspf.vsl
Index: view-table.jspf.vsl
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-jsf2/src/main/resources/templates/jsf2/views/jsp/includes/view-table.jspf.vsl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -r1.3 -r1.4
--- view-table.jspf.vsl 26 Sep 2007 16:11:45 -0000 1.3
+++ view-table.jspf.vsl 25 Feb 2008 14:35:32 -0000 1.4
@@ -53,7 +53,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)
@@ -67,7 +67,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}">
@@ -82,7 +82,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}">
|