Hi
I have a webhierahicalDataGrid, so when user click on a row , i would write some data in a textbox, but nothing append. I mean the rowEventSelection event change , I read the data and write into the textbox, but nothing. So i created a new component called textbox1 and when clicked on a row i try to write test on it but nothing???
Does any body have some idea what is happenig.
Thank's
Chris
protected void WebHierarchicalDataGrid2_RowSelectionChanged(object sender, SelectedRowEventArgs e)
{
if (e.CurrentSelectedRows.Count > 0)
TextBox1.Text ="Pipo";
}
Hello,
Thanks for using Infragistics controls!
Have you enabled the selection behavour?
Regards,
Hello
tank's for answer but i am afraid to not understand your answer. Here is my configuration of the WebHierarchicalDataGrid.
For the moment i use the version 13.2
<ig:WebHierarchicalDataGrid ID="WebHierarchicalDataGrid2" runat="server" Height="350px" InitialDataBindDepth="-1" Width="400px"
oninitializerow="WebHierarchicalDataGrid2_InitializeRow"
onrowselectionchanged="WebHierarchicalDataGrid2_RowSelectionChanged"
EnableDataViewState="True">
<behaviors>
<ig:RowSelectors>
</ig:RowSelectors>
<ig:Selection CellClickAction="Row" RowSelectType="Single">
<AutoPostBackFlags RowSelectionChanged="True" />
</ig:Selection>
</behaviors>
</ig:WebHierarchicalDataGrid>