Welcome to the ASP.NET Core feedback portal. We’re happy you’re here! If you have feedback on how to improve the ASP.NET Core, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes
We need to provide X-template support for all the dropdowns components. Kindly refer the below code for reference,


<ejs-combobox id="customers" query="new ej.data.Query().from('Employees').select(['FirstName', 'City', 'EmployeeID']).take(6)" placeholder="Find an Employee" popupHeight="200px"

              headerTemplate="#headerTemplate">

    <e-combobox-fields value="FirstName"></e-combobox-fields>

    <e-data-manager url="https://services.odata.org/V4/Northwind/Northwind.svc/" adaptor="ODataV4Adaptor" crossDomain="true"></e-data-manager>

</ejs-combobox>




<script id="headerTemplate" type="text/x-template">

    <span class='head'>

        <span class='name'>${Name}</span>

        <span class='city'>${City}</span>

    </span>

</script>