3.2.0

Displaying message with onRowDoubleClicked Event

Hi

Am using AW Grid version 2.5.3
I have two grids say Available Grid and Selected Grid
Whenever i click on any row in the Available Grid, it needs to be removed from the Available Grid and added to the Selected Grid.
Am able to get it worked correctly.
But incase if the data is huge the removal of data from the Available Grid and adding to the Selected Grid is taking time and there is no visual indicator to
the user that something is happening.How can i provide a visual indicator say like 'Loading' or something when the user double clicks on a row.

Any help is appreciated.

Thanks
Aneesh
Aneesh
January 6,
You can insert a DIV with "Loading..." text before starting a long action and remove it when the action is complete. Please keep in mind that browsers do not redraw the page until the current javascript thread is finished, so you cannot do all that in one function. You should first insert the div and call setTimeout() so the browser has time to update UI and show it to the user. And only after that you should start your long action.
Alex (ActiveWidgets)
January 7,
Got it...
Thanks a lot Alex..
Will try this and let you know..

Aneesh
January 7,

This topic is archived.

See also:


Back to support forum