Templates in Blazor MultiSelect Dropdown Component

25 Oct 20249 minutes to read

The MultiSelect has been provided with several options to customize each list item, group title, selected value, header, and footer elements.

To get started quickly with templates in the Blazor MultiSelect Dropdown component, you can check the video below.

Value template

The currently selected value that is displayed by default on the MultiSelect input element can be customized using the ValueTemplate property.

In the following sample, the selected value is displayed as a combined text of both FirstName and Designation in the MultiSelect input, which is separated by a hyphen.

  • CSHTML
  • @using Syncfusion.Blazor.Data
    @using Syncfusion.Blazor.DropDowns
    @using Syncfusion.Blazor
    <SfMultiSelect TValue="string[]" TItem="EmployeeData" Placeholder="Select a employee" Query="@Query">
        <MultiSelectTemplates TItem="EmployeeData">
            <ItemTemplate>
                <span><span class='name'>@((context as EmployeeData).FirstName)</span><span class='destination'>@((context as EmployeeData).Designation)</span></span>
            </ItemTemplate>
            <ValueTemplate>
                <span>@((context as EmployeeData).FirstName) - @((context as EmployeeData).Designation)</span>
            </ValueTemplate>
        </MultiSelectTemplates>
        <SfDataManager Url="https://ej2services.syncfusion.com/production/web-services/api/Employees" Adaptor="Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
        <MultiSelectFieldSettings Text="FirstName" Value="Designation"></MultiSelectFieldSettings>
    </SfMultiSelect>
    
    @code {
        public class EmployeeData
        {
            public string FirstName { get; set; }
            public string Designation { get; set; }
        }
        public Query Query = new Query();
    }
    <style>
        .destination {
            right: 15px;
            position: absolute;
        }
    </style>

    Blazor MultiSelect DropDown with Value Template

    Item template

    The content of each list item within the MultiSelect can be customized with the help of ItemTemplate property.

    In the following sample, each list item is split into two columns to display relevant data.

  • CSHTML
  • @using Syncfusion.Blazor.Data
    @using Syncfusion.Blazor.DropDowns
    @using Syncfusion.Blazor
    
    <SfMultiSelect Placeholder="Select a employee" TValue="string[]" TItem="EmployeeData" Query="@Query">
        <MultiSelectTemplates TItem="EmployeeData">
            <ItemTemplate>
                <span><span class='name'>@((context as EmployeeData).FirstName)</span><span class='country'>@((context as EmployeeData).Country)</span></span>
            </ItemTemplate>
        </MultiSelectTemplates>
        <SfDataManager Url="https://ej2services.syncfusion.com/production/web-services/api/Employees" Adaptor="Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
        <MultiSelectFieldSettings Text="FirstName" Value="Country"></MultiSelectFieldSettings>
    </SfMultiSelect>
    
    @code {
        public class EmployeeData
        {
            public string FirstName { get; set; }
            public string Country { get; set; }
        }
        public Query Query = new Query();
    }
    
    <style>
        .country {
            right: 15px;
            position: absolute;
        }
    </style>

    Blazor MultiSelect DropDown with Item Template

    Group template

    The group header title under which appropriate sub-items are categorized can also be customized with the help of the GroupTemplate property. This template is common for both inline and floating group header template.

    In the following sample, employees are grouped according to their cities.

  • CSHTML
  • @using Syncfusion.Blazor.Data
    @using Syncfusion.Blazor.DropDowns
    
    <SfMultiSelect TValue="string[]" TItem="EmployeeData" Placeholder="Select a customer" Query="@Query">
        <MultiSelectTemplates TItem="EmployeeData">
            <GroupTemplate>
                <span class="group">@(context.Text)</span>
            </GroupTemplate>
        </MultiSelectTemplates>
        <SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
        <MultiSelectFieldSettings Value="FirstName" GroupBy="Country"></MultiSelectFieldSettings>
    </SfMultiSelect>
    
    @code {
    
    public class EmployeeData
    {
    public string FirstName { get; set; }
    public string Country { get; set; }
    }
    
    public Query Query = new Query();
    }
    
    <style>
        .group {
            color: slategrey;
        }
    </style>

    Blazor MultiSelect with GroupTemplate

    Header template

    The header element is shown statically at the top of the popup list items within the MultiSelect, and any custom element can be placed as a header element using the HeaderTemplate property.

    In the following sample, the list items and its headers are designed and displayed as two columns similar to multiple columns of the grid.

  • CSHTML
  • @using Syncfusion.Blazor.Data
    @using Syncfusion.Blazor.DropDowns
    @using Syncfusion.Blazor
    
    <SfMultiSelect TValue="string[]" TItem="EmployeeData" Placeholder="Select a employe" Query="@Query">
        <MultiSelectTemplates TItem="EmployeeData">
            <ItemTemplate>
                <span class='item'><span class='name'>@((context as EmployeeData).FirstName)</span><span class='city'>@((context as EmployeeData).Country)</span></span>
            </ItemTemplate>
            <HeaderTemplate>
                <span class='head'><span class='name'>Name</span><span class='city'>Country</span></span>
            </HeaderTemplate>
        </MultiSelectTemplates>
        <SfDataManager Url="https://ej2services.syncfusion.com/production/web-services/api/Employees" Adaptor="Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
        <MultiSelectFieldSettings Value="Country" Text="FirstName"></MultiSelectFieldSettings>
    </SfMultiSelect>
    
    @code {
        public class EmployeeData
        {
            public string FirstName { get; set; }
            public string Country { get; set; }
        }
        public Query Query = new Query();
    }
    
    <style>
        .head, .item {
            display: table;
            width: 100%;
            margin: auto;
        }
    
        .head {
            height: 40px;
            font-size: 15px;
            font-weight: 600;
        }
    
        .name, .city {
            display: table-cell;
            vertical-align: middle;
            width: 50%;
        }
    
        .head .name {
            text-indent: 16px;
        }
    
        .head .city {
            text-indent: 10px;
        }
    </style>

    Blazor MultiSelect DropDown with Header Template

    The MultiSelect has options to show a footer element at the bottom of the list items in the popup list. Here, you can place any custom element as a footer element using the FooterTemplate property.

    In the following sample, footer element displays the total number of list items present in the MultiSelect.

  • CSHTML
  • @using Syncfusion.Blazor.Data
    @using Syncfusion.Blazor.DropDowns
    @using Syncfusion.Blazor
    
    <SfMultiSelect TValue="string[]" TItem="EmployeeData" Query="@Query" Placeholder="Select a customer">
        <MultiSelectTemplates TItem="EmployeeData">
            <FooterTemplate>
                <span class='footer'>Total list Item: 6 </span>
            </FooterTemplate>
        </MultiSelectTemplates>
        <SfDataManager Url="https://ej2services.syncfusion.com/production/web-services/api/Employees" Adaptor="Adaptors.WebApiAdaptor" CrossDomain=true></SfDataManager>
        <MultiSelectFieldSettings Value="Country" Text="FirstName"></MultiSelectFieldSettings>
    </SfMultiSelect>
    
    @code {
    
        public class EmployeeData
        {
            public string FirstName { get; set; }
        }
        public Query Query = new Query();
    }
    
    <style>
        .footer {
            text-indent: 1.2em;
            display: block;
            font-size: 15px;
            line-height: 40px;
            border-top: 1px solid #e0e0e0;
        }
    </style>

    Blazor MultiSelect DropDown with Footer Template

    No records template

    The MultiSelect is provided with support to custom design the popup list content when no data is found and no matches are found on search with the help of NoRecordsTemplate property.

    In the following sample, popup list content displays the notification of no data available.

  • CSHTML
  • @using Syncfusion.Blazor.DropDowns
    
    <SfMultiSelect TValue="string[]" TItem="EmployeeData" Placeholder="Select a employee" CssClass="e-custom" DataSource="@employee">
        <MultiSelectTemplates TItem="EmployeeData">
            <NoRecordsTemplate>
                <span class='norecord'> NO DATA AVAILABLE</span>
            </NoRecordsTemplate>
        </MultiSelectTemplates>
    </SfMultiSelect>
    
    @code {
    
        public class EmployeeData { }
    
        List<EmployeeData> employee = new List<EmployeeData> { };
    }

    Blazor MultiSelect DropDown without Data

    Action failure template

    There is also an option to custom design the popup list content when the data fetch request fails at the remote server. This can be achieved using the ActionFailureTemplate property.

    In the following sample, when the data fetch request fails, the MultiSelect displays the notification.

  • CSHTML
  • @using Syncfusion.Blazor.Data
    @using Syncfusion.Blazor.DropDowns
    @using Syncfusion.Blazor
    
    <SfMultiSelect  TValue="string[]" TItem="EmployeeData" Placeholder="Select a customer" Query="@Query">
        <MultiSelectTemplates TItem="EmployeeData">
            <ActionFailureTemplate>
                <span class='norecord'>Data fetch get fails </span>
            </ActionFailureTemplate>
        </MultiSelectTemplates>
        <SfDataManager Url="https://services.odata.org/V4/Northwind/Northwind.svcs/Employees" Adaptor="Adaptors.ODataV4Adaptor" CrossDomain=true></SfDataManager>
        <MultiSelectFieldSettings Value="Country" Text="FirstName"></MultiSelectFieldSettings>
    </SfMultiSelect>
    
    @code {
        public class EmployeeData
        {
            public string FirstName { get; set; }
        }
        public Query Query = new Query();
    }

    Blazor MultiSelect DropDown with Action Template