Link to home
Start Free TrialLog in
Avatar of KavyaV
KavyaVFlag for United States of America

asked on

Infragistics ultrawinGrid - selecting the rowid

The Infragistics ultrawinGrid is populated with the dataset.  The id column is hidden column in the grid. The grid has one button column. Every row in the grid has one button. when the button is clicked, clickcellbutton event happens and the user has to redirected to id specific form.
1.How to capture the id in the wingridrow?
pls let me know the possible ways.

Thank You
ASKER CERTIFIED SOLUTION
Avatar of ZeonFlash
ZeonFlash

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of KavyaV

ASKER

I tried this in ClickCellButton event and it's worked.
int id = Conver.ToInt32(ultraGrid1.ActiveRow.Cells["ID"].Value);
What u suggested also worked. Thank u.