Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
55
How to get Row Index in WebHierarchical Data grid on Row selection event handler
posted

Hi 

       now  i'm work with webhierarchicaldatagrid view ... my grid have one column as PDF view ...  this Pdf view is working like POP-UP windows Style... so i need value  of Row  index is must ... My Try as below

protected void whdg1_RowSelectionChanged(object sender, SelectedRowEventArgs e)
{

int row_index = e.CurrentSelectedRows;

}

but i get Row index on this event

protected void whdg1_RowIslandsPopulated(object sender, Infragistics.Web.UI.GridControls.ContainerRowEventArgs e)
{
 
int curr_row_index = e.Row.Index;
}

i want row  index only on row  RowSelectionChanged event handler...

please Help Me ..... 

Thanks Advance

Pathmanabhan kv

Parents Reply Children
No Data