We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Update Event for GDBG

I need an event for Syncfusion GridDataBoundGrid that should be fired every time such as when we make the following on grid.

1. Grid updated.(Data clearing, Row editing, deleting etc.)

2. Freeze columns

3. Cols Moved.

4. Cols width changed.

5. Cols hidden.

But, it should not be Model_QueryCellInfo event because it is fired even when the grid is readonly mode. 

Please help me.

 


2 Replies

AS Athiram S Syncfusion Team July 9, 2013 04:14 AM UTC

Hi Pavan,

Sorry for inconvenience. 

We will update this forum by end of today.

Regards,
Athiram S


AS Athiram S Syncfusion Team July 10, 2013 04:28 AM UTC

Hi Pavan,

Thanks for your patience.

Here is the events that is triggered when the following operations are performed.

S.NO

Operations

Events.

1

Grid updated

this.gdbg.CurrentCellChanged += new EventHandler(gridControl1_CurrentCellChanged);

 

2

Freeze columns

this. gdbg.FrozenRowCountChanged += new Syncfusion.Windows.Forms.Grid.GridCountChangedEventHandler(gridControl1_FrozenRowCountChanged);

 

3

Cols Moved.

this. gdbg.ColsMoved += new GridRangeMovedEventHandler(gridControl1_ColsMoved);

 

4

Cols width changed.

this. gdbg.ColWidthsChanged += new Syncfusion.Windows.Forms.Grid.GridRowColSizeChangedEventHandler(gridControl1_ColWidthsChanged);

 

5

Cols hidden.

this. gdbg.ColsHidden += new Syncfusion.Windows.Forms.Grid.GridRowColHiddenEventHandler(gridControl1_ColsHidden);

 

 

Please let me know if you have any concerns.

Regards,

Athiram S


Loader.
Live Chat Icon For mobile
Up arrow icon