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
1775
Work with a dataset bound to a grid on a separate thread
posted

Hello, 

I've spoken with Infragistics Support about this issue (support request CAS-08857-GUP6P0 if Infragistics engineers (for instance Mike :) ) would like to take a look at it). Unfortunately, the answer was pretty much depressing. Our current implementation looks like this:

We have a form with a grid on it. There is a System.Data.DataSet bound to the grid. To be more specific, let’s assume that the user enters some article ids (one in each row). After the user is done with ids, he presses a button which starts some long running calculation (computation of optimal prices). Currently we do the following:

1.  We call BeginUpdate() and SuspendRowSynchronization() on the grid.
2.  We start the thread which changes the dataset
3.  At the very end this method (which changes the dataset) calls UpdateGrid()

4.  private void UpdateGrid()

        {

            if(InvokeRequired)

            {

                Invoke(new MethodInvoker(UpdateGrid));

            }

            else

            {

                ultraGrid1.ResumeRowSynchronization();

                ultraGrid1.EndUpdate();

            }

        }

So, we do everything in our power to prevent access to UI controls (grid) from a non UI thread.

According to Infragistics Support the described implementation still doesn’t guarantee that the grid won’t “try to query the datasource for changes. If a property is set on the grid, or an action is taken, such as moving the mouse, then the grid will try to talk to its data source to retrieve the values and this is where the problems occur”.

So, my question is whether there is some solution for this more than usual problem (without unbinding the grid completely from the datasource like grid.DataSource=null). Would setting AllowUpdate=false help? Would grid.Enabled = false help?

I’m more than aware that I need to “synchronize worker threads with the UI”. My task is to keep the UltraGridRows and Layout (therefore I don’t want to unbind the DataGrid from the DataSet) AND perform some long running operation which changes the dataset on a separate thread.  I would very appreciate an algorithm in pseudo code.

Parents
No Data
Reply
  • 130
    posted

    When dataset is in update, can you send the grid to back, showing busy indicator in front?  You can bring grid back to front after update is done

Children
No Data