Here is the code it's in a file called alphabet.jsp

<h:panelGrid align="center">           
    <x:dataList
        styleClass="standardList"
        var="alphabet"
        value="#{alphabetGenerator.alphabetList}"
        rowCountVar="rowCount"
        rowIndexVar="rowIndex">                  
       
        <h:commandLink value="#{ alphabet.value}" action="">            <f:param name="alphabetValue" value="#{alphabet.value}" />
        </h:commandLink>

        <h:outputText value="|" rendered="#{rowIndex + 1 < rowCount}" />       

    </x:dataList>
</h:panelGrid>

And i include it
                           
<jsp:include flush="true" page="alphabet.jsp"/>                              

Reply via email to