Skip to main content

BootstrapListBoxFieldMultiColumnSettings.ToolTip Property

Specifies a column header’s tooltip.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DefaultValue("")]
public string ToolTip { get; set; }

Property Value

Type Default Description
String String.Empty

Tooltip text.

Property Paths

You can access this nested property as listed below:

Object Type Path to ToolTip
BootstrapListBoxField

Remarks

When a control is in multi-column mode, use the field’s ToolTip property to specify its corresponding column header tooltip.

Note

To customize other column settings, use the Caption and Width properties.

<dx:BootstrapListBox runat="server" DataSourceID="WWICountriesDataSource" EnableMultiColumn="true" ValueField="CountryID">
    <Fields>
        <dx:BootstrapListBoxField FieldName="IsoAlpha3Code">
            <SettingsMultiColumn Caption="Code" ToolTip="IsoAlpha3Code" Width="50px" />
        </dx:BootstrapListBoxField>
        <dx:BootstrapListBoxField FieldName="CountryName" />
        <dx:BootstrapListBoxField FieldName="Region" />
        <dx:BootstrapListBoxField FieldName="Subregion" />
    </Fields>
</dx:BootstrapListBox>

Bootstrap-ListBox-Multi-Column-Mode

Note

Online Demo: List Box - Multi Column

See Also