dashboard-js-devexpress-dot-dashboard-c5b86362.md
Contains classes and members that allow you to use legacy options.
export class LegacySettings
static showExtendedDateOccurringList: boolean
| Type |
|---|
| boolean |
static showUndoRedoButtonsInToolbox: boolean
| Type |
|---|
| boolean |
Specifies whether to use the dxTreeView widget to visualize the Tree View dashboard item.
static useLegacyTreeView: boolean
| Type | Description |
|---|---|
| boolean |
true , to use the dxTreeList widget; false , to use the dxTreeList widget.
|
With v17.2, DashboardControl uses the underlying dxTreeList instead of dxTreeList to visualize a Filter Elements Overview (Web). This change can affect projects where ViewerApiExtensionOptions .onItemWidget… handlers are specified to customize the underlying dxTreeView widget.
The dxTreeView widget was replaced with dxTreeList for these reasons:
If necessary, you can return to the previous behavior and use the dxTreeView widget using the useLegacyTreeView property. The following code snippet shows how to do this:
window.onload = function () {
DevExpress.Dashboard.LegacySettings.useLegacyTreeView = true;
// ...
};