The MultiSortDialog appears as deprecated. I did not find a replacement. Even in the showcase there is no nother example mentioned.
Another question is... how can I transfer the following window settings to this dialog:
SmartGWT: 6.1p
Version: 30. July LGPL
Thanks
Andy
Code:
MultiSortDialog.askForSort( listGrid, listGrid.getSort(), new MultiSortCallback() { public void execute( SortSpecifier[] sortLevels ) { if ( sortLevels != null ) { listGrid.setSort( sortLevels ); } } } );
Code:
Window window = new Window(); window.setIsModal( true ); window.setShowModalMask( true ); window.setModalMaskOpacity( 75 );
Version: 30. July LGPL
Thanks
Andy
Comment