07-26-2006 03:54 PM
07-27-2006 04:14 AM
<%– Code ID column for custom view modes –%>
<a:column id="colcustom1" style="text-align:left" rendered="#{BrowseBean.browseViewMode == 'custom'}">
<f:facet name="header">
<a:sortLink id="colcustom1-sort" label="Code ID" value="codeid" styleClass="header"/>
</f:facet>
<h:outputText id="colcustom1-txt" value="#{r.codeid}" />
</a:column>
This will add a new column that binds to the "cm:codeid" field on a node and will only be visible for the custom view.07-27-2006 10:41 AM
<type name="my:sop">
<title>Standard Operating Procedure</title>
<parent>cm:content</parent>
<properties>
<property name="my:codeid">
<title>Code Id</title>
<type>d:text</type>
</property>
</properties>
</type>
<%– Code ID column for custom view modes –%>
<a:column id="colcustom1" style="text-align:left" rendered="#{BrowseBean.browseViewMode == 'custom'}">
<f:facet name="header">
<a:sortLink id="colcustom1-sort" label="#{msg.codeid}" value="my:codeid" styleClass="header"/>
</f:facet>
<h:outputText id="colcustom1-txt" value="#{r.codeid}" />
</a:column>
07-27-2006 12:26 PM
<h:outputText id="colcustom1-txt" value='#{r["my:codeid"]}' />
Note the use of single quotes around the 'value' attribute and the double quoted value inside it.07-27-2006 03:52 PM
01-18-2011 09:48 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.