We are using telerik menu component to build left hand menu panel. Please see attached pic. It is working very good and very smooth.
However we need two features:
1) on a popup menu, want to have a header which is not clickable and only show text for the icon.
2) if number of entries are more, want to be able to do scrolling through the popup menu. Also, while scrolling through the entries, header should stay intact.
3) show the scroll bar in popup so that user knows there are more entries.
Anyway to achieve that?
Thanks



Is it possible to set Kendo menu direction to auto so that it can open in any direction according to available space?
My issue is that I have to use the vertical menu because of the minimum space that I have avaiable in mobile screen. But when the user clicks on the menu item it expands off the screen and the he can't read what is in the menu items.

Hello,
I'm trying to use master-details grid with checkbox selection,
1. when i click on the collapse all the data refresh, and all the selections are deleted
2. how do i get all the selections from all the details grid in one button?
best regards.

Hello,
my server support CORS so I want to use get instead of jsonp when fetching data using the action on a model ? can someone help me please ? Thanks
private fetch(action: string = '', data?: any): Observable<any[]> {
return this.http
.jsonp(`https://demos.telerik.com/kendo-ui/service/Products/${action}?${this.serializeModels(data)}`, 'callback')
.pipe(map(res => <any[]>res));
}


How can I traverse the treeview? For example, I start at a node somewhere in the hierarchy and want to get data from its parent and then from the parent of the parent?
I could use the TreeItemLookup, but it fires when checkboxes are enabled for each node only. And then I would get the parent of the current node only, not the parent of the parent.


Good morning,
Hoping someone here might have some ideas on this. I have a kendo-menu, and need to disable the menu-items underneath under certain circumstances:
So something like this:
<kendo-menu class="kendo-menu-project" > <kendo-menu-item [disabled]="isThisDisabled()"> <ng-template kendoMenuItemTemplate> <tooltip-wrapper [tooltipContent]="'tooltip i'd like to show'"> <span id="pg-mmenu-add-collate" (click)="doSomething()">Menu Item 1</span> <tooltip-wrapper> </ng-template> </kendo-menu-item>....
The tooltip-wrapper is one of our components, whose template creates a kendoTooltip :
<span kendoTooltip="" [showOn]="isToolTipHidden() ? 'none' : 'hover'" [tooltipWidth]="tooltipWidth" [tooltipClass]="(warning) ? 'c-warning' : ''" filter=".c-tooltip-element" [tooltipTemplate]="listView ? list : default" [position]="position" class="c-tooltip-wrapper"> <span class="c-tooltip-element" [ngClass]="{ 'no-hide' : !overflowHidden }" [attr.tooltip-content]="listView ? tooltipContent.join('<br/>') : tooltipContent">{{spanText}}<ng-content></ng-content></span></span><ng-template #list let-anchor> <div *ngFor="let listValue of anchor.nativeElement.getAttribute('tooltip-content').split('<br/>')"> <span>{{listValue}}</span> </div></ng-template><ng-template #default let-anchor> <span>{{anchor.nativeElement.getAttribute('tooltip-content')}}</span></ng-template>
No problems showing the tooltip under normal circumstances, but of course, once the menu items is disabled, the hover event doesn't propagate down to the tooltip component so it doesn't show. Is there anyway to accomplish this when the menu item is disabled?
