Columns headers with select filters

Hi,
Mine grids have possibilities to save columns widths and columns index after column moves . I’m using that:

         mygrid.enableMultiselect( true );
         mygrid.enableHeaderMenu();
         mygrid.enableColumnMove( true );
         mygrid.enableUndoRedo();
         mygrid.setAwaitedRowHeight( 22 );
         mygrid.attachEvent( "onResizeEnd", function( obj ){ grid_save( mygrid, gid ); } );
         mygrid.attachEvent( "onColumnHidden", function( index, state ){ grid_save( mygrid, gid ); } );
         mygrid.attachEvent( "onAfterCMove", function( cInd, posInd ){ grid_col_save( mygrid, gid ) } );

I have a small problem then pressing on column header select filter button . It appears a small flick and run event “onResizeEnd” . How to avoid that ?

With best regards !

Hi !
Nothing can’t to help ? Any advice ?

Unfortunately the issue cannot be reconstructed locally.
Please, provide a complete demo where the issue can be reproduced.
Here you can find a tutorial:
docs.dhtmlx.com/doku.php?id=othe … leted_demo

Hi Sematik,

Sample …

mygrid.attachEvent( “onResizeEnd”, function( obj ){ alert( “I resized column … :slight_smile:” ); } );

Then click on column type “#connector_select_filter” select button . If to click very carefull and slow , then maybe you will not get alert message . But 95 % alert appears … :slight_smile:

Regards !

Unfortunately the issue still cannot be reproduced.
Please, provide a complete demo where the issue can be reconstructed.