this should be discussed on the Apache Trinidad Podling list.

-Matt

http://wiki.apache.org/myfaces/adf_mails

On 7/14/06, Daniel Gradecak <[EMAIL PROTECTED]> wrote:
Hi,

I am trying to use the ADF table tag. I have enabled the details column
but when I click on show there is nothing happening, the row is not opened.
Is there something that I am doing wrong? here is my code.

<af:table allDetailsEnabled="true"
                    binding="#{editor.component}"
                                  rowBandingInterval="2"
                    value="#{requestScope.list}" var="l"
                     emptyText="No Data"
                     summary="Element information"
                     rows="1">

                        <af:column>
                            <f:facet name="header">
                                <af:outputText value="CallerID"/>
                            </f:facet>
                        <af:outputText value="#{l.callerId}"/>
                        </af:column>

                       <af:column>
                           <f:facet name="header">
                                <af:outputText value="Extension"/>
                            </f:facet>
                        <af:outputText value="#{l.extension}"/>
                        </af:column>

                       <af:column>
                           <f:facet name="header">
                                <af:outputText value="State"/>
                            </f:facet>
                              <af:outputText value="#{l.state}"/>
                        </af:column>
                        <f:facet name="detailStamp" >
                                <af:panelGroup layout="vertical" >
                                  <af:outputText value="AAAAAAA"/>
                                  <af:outputText value="BBBBBBB"/>

                                </af:panelGroup>
                              </f:facet>
                    </af:table>



--
Matthias Wessendorf

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com

Reply via email to