Hi,
Is there any way to add a button inside the column chooser (Not outside of its range in the desing area). I want to use this to catch and save the preferences of the user about the columns of the grid he has chosen.
There's no simple way to put a button into the ColumnChooser. Perhaps you should prompt the user to save when the dialog closes?
I am using the column chooser control. When I drag out any column from a grid bound to the column chooser, I need to change the status of a check box. For that which event should I use? I have already tried events such as DragOver, DragEnter etc. but nothing is working.
I don't beleive there is any event that will allow you to trap the dragging or dropping of columns. What exactly is the checkbox being used for? I'm having a hard time understanding why you would change a checkbox during a drag operation.If you want to change the checkbox in response to the hiding or showing of the column, then I think you can use the Before/AfterColPosChanged event of the grid.
Thanks a lot Mike.
That made work quite easy.
I used the same event as you told and it is working very nicely.