Package com.smartgwt.client.data
Class MultiSortDialog
java.lang.Object
com.smartgwt.client.data.MultiSortDialog
Deprecated.
A dialog that allows the user to set up complex sorting arrangements by defining a group of 
SortSpecifiers.
 Each SortSpecifier applies to a single property and direction - so, for instance, in a grid with two columns, year and monthNumber, you could sort first by year in descending order and then by monthNumber in ascending order. T his would producing a grid sorted by year from largest (most recent) to smallest (least recent) and, within each year, by monthNumber from smallest (January) to largest (December).
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic voidaskForSort(DataBoundComponent dataBoundComponent, SortSpecifier[] initialSort, MultiSortCallback callback) Deprecated.In favor of the implementation in the "widgets" package - {@link com.smartgwt.client.widgets.MultiSortDialog.askForSort()}static voidDeprecated.Set the default title for the MultiSortDialog.
- 
Constructor Details- 
MultiSortDialogpublic MultiSortDialog()Deprecated.
 
- 
- 
Method Details- 
setTitleDeprecated.Set the default title for the MultiSortDialog.- Parameters:
- title- the title
 
- 
askForSortpublic static void askForSort(DataBoundComponent dataBoundComponent, SortSpecifier[] initialSort, MultiSortCallback callback) Deprecated.In favor of the implementation in the "widgets" package - {@link com.smartgwt.client.widgets.MultiSortDialog.askForSort()}Launches a MultiSortDialog and obtains a sort-definition from the user.- Parameters:
- dataBoundComponent- the databound component to apply the sort to
- initialSort- The initial sort definition.
- callback- Called when the user defines and accepts one or more SortSpecifiers. Single parameter sortLevels is an Array of SortSpecifier or null if the user cancelled the dialog.
 
 
- 
MultiSortDialog, from the "widgets" packags