AD
Administrator
Syncfusion Team
April 9, 2004 09:05 PM UTC
There are no events fired.
You could try deriving the grid and overriding OnDrawClientRowCol. In your override, you could start your hour glass before calling the baseclass, and then turn it off after your call to the baseclass.
To get a progress bar would take more work along the same lines. In your OnDrawClientRowCol override, you can get the limits that are being drawn. Then somewhere else, you would have to use these limits to update the progressbar values. (Maybe in OnCellDrawn for instance.)
AD
Administrator
Syncfusion Team
April 12, 2004 02:45 PM UTC
Clay,
Thanks for the ideas. I''ll play around with them some and see what I come up with.
I think I''d like to add to the wish-list that in some future version, you guys add events for the start and end of a series of GQCI calls. If possible.
Thanks again,
Andy
>There are no events fired.
>
>You could try deriving the grid and overriding OnDrawClientRowCol. In your override, you could start your hour glass before calling the baseclass, and then turn it off after your call to the baseclass.
>
>To get a progress bar would take more work along the same lines. In your OnDrawClientRowCol override, you can get the limits that are being drawn. Then somewhere else, you would have to use these limits to update the progressbar values. (Maybe in OnCellDrawn for instance.)