All,

I got it, I needed to add pageAction=""

Ron

On 1/8/07, Ronald R. DiFrango <[EMAIL PROTECTED]> wrote:

All,

I have a data grid defined on my page like the following:

<netui-data:dataGrid dataSource="
pageInput.getVendorListResult.vendorSearchResults.vendorDetailsList"
            name="vendorResultsGrid">
            <netui-data:configurePager pagerFormat="firstPrevNextLast"
defaultPageSize="20"/>
            <netui-data:header>
                <netui-data:headerCell headerText="Vendor Name"
cellAlign="center"/>
                <netui-data:headerCell headerText="Material Type"
cellAlign="center"/>
                <netui-data:headerCell headerText="Vendor Number"
cellAlign="center"/>
            </netui-data:header>
            <netui-data:rows>
                <netui-data:spanCell value="${container.item.vendorName}"
cellAlign="left"/>
                <netui-data:spanCell value="${ container.item.materialType}"
cellAlign="left"/>
                <netui-data:spanCell value="${container.item.vendorNumber}"
cellAlign="left"/>
            </netui-data:rows>
            <netui-data:footer>
                <tr>
                    <td colspan="3"><netui-data:renderPager /></td>
                </tr>
            </netui-data:footer>
        </netui-data:dataGrid>

The grid displays properly for the 1st page, but when I click the link to
go to the next page I get the following error:

Tag Error
Message
The page input "getVendorListResult" is required for this page and was not
found.

Is there a specific PageFlowController action that I need to implement to
handle these links or are they handled automatically?  If I need a specific
action, how do I define it?

Ron


Reply via email to