How to select active row i click on via Band[1] , currently below i am currently getting the firstrow at the moment until i find out how to get the actives row within band[1].
DataRowView
childRowInfo = (DataRowView)ultraGrid1.ActiveRow.ChildBands.FirstRow.ListObject;
Nevermind I fix the problem. I use a ultragridrow instead of a ultragrid. and use the band.key to do something. Ultragrid row will always give me the data base on anyone that is being click or active. But I have to pass in the Ultragrid.ActiveRow.
FIx Below:
rowInfo = (DataRowView)ultraGridrow.ListObject;