Back to Devexpress

ASPxTitleIndex.FilterBox Property

aspnet-devexpress-dot-web-dot-aspxtitleindex-5527719f.md

latest2.2 KB
Original Source

ASPxTitleIndex.FilterBox Property

Gets the filter box settings.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public FilterBox FilterBox { get; }
vb
Public ReadOnly Property FilterBox As FilterBox

Property Value

TypeDescription
FilterBox

A FilterBox object that represents the filter box.

|

Remarks

The FilterBox property provides access to the settings that specify the filter’s visibility, caption, information text, position within the ASPxTitleIndex control, etc. For more information, see FilterBox.

Example

This example demonstrates how to implement custom group ranges in the ASPxTitleIndex.

aspx
...
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/nwind.mdb"
SelectCommand="SELECT * FROM [Customers]"></asp:AccessDataSource>

<dxti:aspxtitleindex id="ASPxTitleIndex1" runat="server" groupingfield="GroupText"
    navigateurlfield="ID" navigateurlformatstring="?id={0}" textfield="ContactName">
    <FilterBox Visible="False"></FilterBox>
    <Columns>
        <dxti:Column></dxti:Column>
        <dxti:Column></dxti:Column>
        <dxti:Column></dxti:Column>
        <dxti:Column></dxti:Column>
        <dxti:Column></dxti:Column>
    </Columns>
</dxti:aspxtitleindex>
...

See Also

Title Index

ASPxTitleIndex Class

ASPxTitleIndex Members

DevExpress.Web Namespace