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
300
Set Row selected after update
posted

UltraGrid.  Select the tenth row for example (a total of about 150). Produce some actions, and then update the list. It is necessary that after updating, the highlighted row  remained the same, rather than jumping on the first row. How to implement it?

P.S. Sorry for my English, I'm from Russia.

Parents
  • 20872
    Offline posted

    Hello FirsovAlexey,

    Assuming that after that upgrade you would like to have again the tenth row selected you could do the following:

     ultraGrid1.DisplayLayout.RowScrollRegions[0].FirstRow = ultraGrid1.Rows[10];

    Please let me know if you have any other questions with this matter.

Reply Children