Hi, I am using Telerik grid in Razor pages applications. I have main grid and Detail grid.
<script id="orderItemsTemplate" type="text/kendo-tmpl">Problem: .ToolBar(tb => tb.Columns()) is not working on Detail grid template.
I have a page with kendo menu and sometimes k-reset css class is being applied to all ul elements in a kendo menu. As a result the kendo menu is becoming all white and then its impossible to read the menu items.
Is there any way to prevent this css class of k-reset from being applied?
I looked at the demo at https://demos.telerik.com/kendo-ui/menu/orientation.
The code for this demo included the following line of code.
menu.data("kendoMenu").close($("#myMenu .k-link"));
Can someone tell me how I can align my last element to the right while the others stay to the left please? i am working with asp.net mvc core 8
@(Html.Kendo().Menu()
Hi,
as the title says i'm trying to open an alert on the Select Event of a kendoContextMenu, but the alert is shown only after the Select function is completed, is it possible to show an alert as soon as the user clicks on the ContextMenu option (at the start of the Select Event)?
Below the Select Event of my code:
select: function (e) {
alert("Test Alert"); //This one appears only after that the Select function ends, but i'd want it to appear as soon as the select function starts
//MY CODE
}
Thanks in advance,
- Antonio
Kendo Javascript : Toolbar is not working as expected on the previous version of KendoUI , It was working fine. On this example if I am trying to add "Add Sub Project" on template of toolbar, Still it is showing default "Add new record" on the screen. Functionality is working fine only the issue with toolbar template.
I'm trying to create a kendo menu that stays inside a bootstrap responsive grid. I don't want to set an explicit width, but allow users to scroll when items don't fit in the screen width.
Example: https://dojo.telerik.com/EJojofaD/6
When I try to click on a sub menu item, it closes too soon. When I remove the 'scrollable' property, clicking on child items works, but the menu overflows its containers.
How can I have a menu that stays inside a bootstrap grid column without specifying a width explicitly, and still be able to?
Hello,
i need some help regarding a problem with the context-menu. i am total new with the framework so maybe my question sounds a little stupid. sorry for that.
When an entry in the context menu is clicked twice (kind of double-click) the app has a problem with the request that is still beeing executed by the first click.
So how can i disable a context menu-entry inside a click handler. We are using typescript.
The handler starts with
private OnMenuItemSelect(event: ContextMenuSelectEvent): boolean {
const item = $(event.item);
const menuItemId = this.GetMenuItemIdFrom(item);
if (menuItemId == null) {
return true;
}
const menuItem = this.GetMenuItemById(menuItemId);
if (menuItem == null) {
return true;
}
How can i access the clicked entry and disable it ?
Hi,
The menu widget has an 'enable()' function, is there a similar way to hide a menu item the same way?
Thanks,
Grant