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
2730
Ultragrid Child row
posted

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;

  • 2730
    posted

    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:

     

    DataRowView

     

     

    rowInfo = (DataRowView)ultraGridrow.ListObject;