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
616
Search in UltraGrid
posted

 Search by search of rows in UltraWinGrid turns out slow. Is in UltraWinGrid standard means of search? Whether it is possible associate a row in DataSet which is DataSource of UltraWinGrid?

For example, 

row = dataset.Tables [0].Rows [5];

ultraGrid. ActivateRow = row.

Parents
No Data
Reply
  • 469350
    Offline posted

    If looping through the rows in the grid is slow, there could be any number of reasons for this. It could be that your code is just not written efficiently, or it could be that the data source is slow at retrieving the records, or it could be an issue where it's just not possible to loop any faster. It's impossible to guess without knowing more about exactly what you are doing, what your data source, what you are searching for, and how you are doing it.

    There's a method on the Rows collection called GetRowWithListIndex which you can use if you know the Index of the row in your data source. 

Children