clem_c_rock
09-30-2010, 04:14 PM
Hello,
I have a datagrid with 3 columns, that works great until you have 2 rows next to each other w/ the exact first name and last name.
When that happens, I can select the top row but I can't select the bottom row.
If I trace the onPatientSelected method, it never gets called.
here's my datagrid code below:
<code>
<mx:DataGrid
id="patientList"
dataProvider="{dataProvider}"
change="onPatientSelected()"
styleName="patientlist"
width="100%"
height="100%"
editable="false"
draggableColumns="false"
resizableColumns="false" headerRelease="checkColumnSorted(event)">
<mx:columns>
<mx:DataGridColumn headerText="Last Name" dataField="LastName" />
<mx:DataGridColumn headerText="First Name" dataField="FirstName"/>
<mx:DataGridColumn headerText="Unique Id" dataField="UniqueId" sortable="false"/>
</mx:columns>
</mx:DataGrid>
</cod>
Any ideas?
I have a datagrid with 3 columns, that works great until you have 2 rows next to each other w/ the exact first name and last name.
When that happens, I can select the top row but I can't select the bottom row.
If I trace the onPatientSelected method, it never gets called.
here's my datagrid code below:
<code>
<mx:DataGrid
id="patientList"
dataProvider="{dataProvider}"
change="onPatientSelected()"
styleName="patientlist"
width="100%"
height="100%"
editable="false"
draggableColumns="false"
resizableColumns="false" headerRelease="checkColumnSorted(event)">
<mx:columns>
<mx:DataGridColumn headerText="Last Name" dataField="LastName" />
<mx:DataGridColumn headerText="First Name" dataField="FirstName"/>
<mx:DataGridColumn headerText="Unique Id" dataField="UniqueId" sortable="false"/>
</mx:columns>
</mx:DataGrid>
</cod>
Any ideas?