Back to Devexpress

ComboBoxItem Class

dashboard-js-devexpress-dot-dashboard-dot-model-19fc9f7c.md

latest8.1 KB
Original Source

ComboBoxItem Class

A Combo Box dashboard item that allows end users to filter other dashboard items.

Declaration

ts
export class ComboBoxItem extends FilterElementItemBase

Remarks

The Combo Box dashboard item allows end users to filter other dashboard items by selecting a value(s) from the drop-down list .

Refer to Filter Elements Overview to learn more about filter elements.

Example

The following example shows how to create the Combo Box dashboard item, bind it to data and add to the existing dashboard.

Create data items (dimensions) and use the DataItem.dataMember property to bind them to the existing data source’s columns. Then use the created dimensions in the dashboard item to bind it to data.

After you add the created dashboard item to the Dashboard.items collection, call the Dashboard.rebuildLayout method to rebuild the dashboard layout and display changes.

javascript
// Use the line below for a modular approach:
// import * as Model from 'devexpress-dashboard/model'
// Use the line below for an approach with global namespaces:
// var Model = DevExpress.Dashboard.Model;

// ...
public creatComboBox() { 
    // Create data items for the ComboBox.
    var comboBoxCountry = new Model.Dimension();
    comboBoxCountry.dataMember("Country");
    var comboBoxFullName = new Model.Dimension();
    comboBoxFullName.dataMember("FullName");

    // Create the ComboBox dashboard item and bind it to data.
    var comboBoxItem = new Model.ComboBoxItem();
    comboBoxItem.name('comboBox');
    comboBoxItem.dataSource(sqlDataSource.componentName());
    comboBoxItem.dataMember(sqlDataSource.queries()[0].name());

    comboBoxItem.filterDimensions.push(comboBoxCountry);
    comboBoxItem.filterDimensions.push(comboBoxFullName);

    comboBoxItem.comboBoxType("Checked");

    control.dashboard().items.push(comboBoxItem);
    // ...
    control.dashboard().rebuildLayout();
}

Inherited Members

colorScheme

coloringOptions

componentName

customProperties

dataItems

dataMember

dataSource

disposed

enableSearch

filterDimensions

filterString

formatRules

hiddenDimensions

hiddenMeasures

interactivityOptions

isDisposed

isMasterFilterCrossDataSource

itemType

name

parentContainer

showCaption

visibleDataFilterString

dispose

getInfo

getUniqueNamePrefix

Inheritance

SerializableModel TypedSerializableModel DashboardItem DataDashboardItem FilterElementItemBase ComboBoxItem

See Also

Filter Elements Overview (Web)

constructor

Initializes a new instance of the ComboBoxItem class.

Declaration

ts
constructor(
    dashboardItemJSON?: any,
    serializer?: DevExpress.Analytics.Utils.ModelSerializer
)

Parameters

NameTypeDescription
dashboardItemJSONany

A JSON object used for dashboard deserialization. Do not pass this parameter directly.

| | serializer | ModelSerializer |

An object used for dashboard deserialization. Do not pass this parameter directly.

|

Properties

comboBoxType Property

Specifies the type of the Combo Box dashboard item.

Declaration

ts
comboBoxType: ko.Observable<DevExpress.Dashboard.Model.ComboBoxDashboardItemType>

Property Value

TypeDescription
Observable<ComboBoxDashboardItemType>

A ComboBoxDashboardItemType value that specifies the type of the Combo Box dashboard item.

|

showAllValue Property

Declaration

ts
showAllValue: ko.Observable<boolean>

Property Value

Type
Observable<boolean>