listgrid only displays first row even though 15 rows are returned from my php datasource

I modified the example I found on this site that shows how to bind a datasource to a php script for poulating a listGrid. Only the first row is displayed although I can see 15 rows in the response in the debugger, The same thing happens when I run the unmmodified eaxmaple.

<b:dataSource name="remote" e:behavior="b:remoteData" dataType="application/xml" requestType="text/xml" url="dataProviderClaims.php" method="POST">
        <b:dataSchema identifier="id">
            <b:dataField name="Number" select="Number" />
            <b:dataField name="TechAssigned" select="TechAssigned"  />                 
        </b:dataSchema>
        <e:handler event="error" type="application/javascript">
               alert(event.message)
        </e:handler>
</b:dataSource>

<b:listGrid dataSource="remote" id="test" rows="15" rowClasses="rowClass1, rowClass2" width="600px" height="600px">
                                <b:listGridCol dataField="Number" label="Claim Number"  />
                                <b:listGridCol dataField="TechAssigned" label="Tech Assigned"  />
</b:listGrid>

listgrid rows missing

Hi bmegac,

It will be nice if you also post your xml data. Based on this, we are able to have a global picture of the listgrid and dataSource.

THank you

Andys