I'm implementing a search form using an ngbDropdown and the form contains a kendo-dropdownlist (to select what object type they want to search)
Unfortunately, when I select an option from the dropdown list, the menu closes. "autoClose" set to "false" works, but gives unwanted behaviour (in that the form itself almost never goes away). Worse, "autoClose" set to "outside" makes no difference.
Is there something I'm doing wrong?
Just to give an idea of what I'm doing, this is the beginning of the code (using Kendo 17.3.12):
<div ngbDropdown [autoClose]="'outside'" #searchMenu="ngbDropdown">
<div id="searchMenuInner" ngbDropdownToggle>
<span class="fa-solid fa-magnifying-glass"></span>
</div>
<div ngbDropdownMenu aria-labelledby="searchMenuInner">
<div ngbDropdownItem>
<div class="menu-header">Search</div>
<div class="menu-item">
<kendo-dropdownlist #searchType [data]="searchableItems"