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"
Hello,
We encountered a problem inside our app while using the kendo-treelist component.
As shown in the video attached, we use a template to edit the values in the tree, which is either kendo-dropdownlist or kendo-numerictextbox. At the press of the kendo-icon-wrapper, which contains that arrow SVG icon (for increasing/decreasing the value or selecting from the dropdown), the whole row will either collapse or expand depending on the current state that it has.
From debugging, we believe that because the same SVG icon has been used, it might trigger the collapsing/expanding.
After adding a kendo-icon-wrapper component inside that cell, we could observe the same behaviour when pressing next to the 'test' text.
We are looking for a solution to this problem.
Thank you in advance.
I used this page https://www.telerik.com/kendo-angular-ui/components/filter/expression-value-template as a reference to get a filter working on my application. We have a list of objects that have a name and id, used as the the text and value of the drop down. Selecting an option sets the filter option correctly and filters the list, but the drop down list does not show that any options have been selected. Is this just an issue with object dropdownlists on filters?
I couldn't get stackblitz to work, but here's an example that produces the issue.
template: `
</kendo-filter>
`,
I have a flat list of objects that I am grouping for a dropdown list. The issue is that no matter what, the order of the groups is always in descending order, even if I provide the "dir" sort descriptor. Please see the following code
//Group departments by user departments and other for easier access on UI
this.departments.forEach(department => {
department["subCategory"] = this.isMyDept(department.id) ? "My Departments": "Others";
});
this.departmentGrouping = groupBy(this.departments, [
{ field: "subCategory", dir: "asc" },
]) as GroupResult[];
<kendo-dropdownlist
[(ngModel)]="deptID"
[data]="departmentGrouping"
[filterable]="true"
[showStickyHeader]="false"
textField="name"
valueField="id"
[valuePrimitive]="true"
>
</kendo-dropdownlist>
When my dropdown is displayed, the "Others" group is always on top. It doesn't matter if I change the "dir" descriptor to "asc" or "desc" in the groupBy function, nothing changes. How do I sort the group order so I can have "My Departments" as the top group?
Is it possible to customize the black triangular "caret-down" icon used in the DropdownList
and similar components (like ComboBox)?
I’d also like to know how to replace the "caret-up" and "caret-down" icons in the NumericTextBox
.
Our apps use Font Awesome icons consistently, and I’m trying to replace these default icons with Font Awesome equivalents, but I haven’t been able to figure out how to do this. Could you provide guidance or examples?
I have a kendo-treelist in Angular
Edit mode has only Number, Text or boolean,
I need to make it custom select instead.
Is there any one who knows how?
Right now, the selected item's background is orange in the popup that's shown when we click on the drop down list, but I want to change it to blue, for instance. What is the style that I can apply. I have tried using css classes, popupsettings, etc. but to no avail.
For instance,
In the image above, I would want the colour of "Los Angeles" to be set to something else. Please advise.