{
Infragistics.WebUI.UltraWebGrid.UltraGridCell myCell = e.Cell;
}
hidContactID.Value = myCell.Row.Cells[2].Value.ToString();
showDialog(wdlgConfirmDelete);
else
.....
In 8.3 the e.Cell.Column is null. How do I retrieve the column index now? I would prefer to use the UltraWebGrid.Click() method, since I have several other sites which are using that method.
Thanks,
Eric HintzMCSD.NET
Hello Eric,
Thanks for dropping us a line and for reporting this issue. In this particular case however, I am not able to reproduce that locally. Using a very simple grid setup, I just dragged a grid from the toolbox and handled the click event - no matter what I tried, e.Cell.Column was correctly set and the index was available. Please, take a look at the screenshot for additional details. The version I am using is Version=8.3.20083.1009.
Am I missing something? And in any case, I believe in cases like this it is best to contact Developer Support directly via the following link
http://es.infragistics.com/Support/default.aspx#Overview
Since I believe that in cases like this direct communication with dev support might prove faster / more effective than peer to peer forums.
I created a test page with a grid and same query. The click event handled just fine (cell.column.index was not null). I deleted the previous UltraWebGrid and re-created everything the same, and the index now works. My UltraWebGrid is Version=8.3.20083.2039. All is working now.
Thank you!
Eric