I applied the bootstrap-v4 theme as described here
https://www.telerik.com/forums/support-for-bootstrap-4#0ycfPtGd9kqSuUyQ97z4mw
I noticed the menu control changes the text color to gray, so it kind of looked like the entire menu was disabled to me at first.
You can see it here
https://dojo.telerik.com/AKuPiXOL
It looks like kendo is setting this style. Not sure if this is intentional or not.
In my project I added this style to take out the kendo color.
:not(.k-context-menu).k-menu > .k-item{ color: inherit;}
Hi team,
Found this weird UI issue when clicking filter option in column menu on a grid. See screenshot: the text in panel is being auto-selected.
Last kendo release with Default theme, Chrome/Firefox
Best regards.
Laurent

Is there any way to apply column filtering to multiple columns at once? Whenever I try to add a second filter, the first is erased.
Thanks for any help.
Callam

Hello,
I need to keep the confirmation of row deletion,but would like to have it in batch
I have the grid in 'batch Editing Mode',and setting of selectable: "multiple row", so using the following code :
EntityManageGrid.select().each(function () {
EntityManageGrid.removeRow($(this).closest("tr"));
});
will result in a confirmation on each row,while this is a batch operation that should be confirmed once
Is there another method to be able to delete batch rows with single confirmation for the whole batch operation
Thanks in avance
Regards,
MOTASH

Hi,
Following on from a previous post
I now have a grid view as the source for my drag items and dropping onto a scheduler and this works great when the scheduler is configured to show one resource. If the scheduler has a resource group I would like to not only pick the timeslot where the item was dropped but also the resource too.
My scheduler Resources are defined as:
var resourcesParam = '?d=' + String($kk_sDivisionFk) + '&t=' + String($kk_sTeamFk) + '&a=' + String($kk_sAssignee) + '&u=' + String($UserID); var schedulerResources = [ { field: "assignee", name: "Assignee", dataTextField: "Text", dataValueField: "Value", dataSource: { transport: { read: { url: '@Url.Content("~/Home/GetActiveMembers")' + resourcesParam, dataType: 'json' } } }, title: "Assignee" } ];
Based on the previous post... my create drag area is set as:
//Make the scheduler a drop area for drag and drop.function createDropArea(scheduler) { var grid = $("#grid").data("kendoGrid"), gridRowOffset = grid.tbody.find("tr:first").offset(); scheduler.view().content.kendoDropTargetArea({ filter: ".k-scheduler-table td, .k-event", drop: function (e) { var offset = $(e.dropTarget).offset(); var slot = scheduler.slotByPosition(offset.left, offset.top); var dataItem = grid.dataItem(grid.select()); if (dataItem && slot) { var offsetMiliseconds = new Date().getTimezoneOffset() * 60000; var newEvent = { eID: -1, status: dataItem.status, assignee: XXXXX, //This should be the dataValueField from schedulerResources above (it is an integer) title: dataItem.title, start: slot.startDate, end: new Date(slot.startDate.getTime() + (dataItem.end - dataItem.start)), requestType: dataItem.requestType, lastUpdatedBy: currentUser, isAllDay: dataItem.isAllDay, startTimezone: dataItem.startTimezone, endTimezone: dataItem.endTimezone }; //grid.dataSource.remove(dataItem); //I don't need to remove item from grid. scheduler.dataSource.add(newEvent); } } });}
Is there a way to get the assignee value? If it helps the scheduler has been restricted to timeline, timelineWeek and timelineMonth views.
Thanks.

$("#toolbar").kendoToolBar({ items: [ { type: "button", text: "Prodaja", imageUrl: "Image1.png"}, { type: "button", text: "Oddaja", imageUrl: "Image2.png"} ] });So this is odd...
My markup has radio buttons in each sortable item. I can select them no problem, but once I start to drag to sort, I can see the hint and placeholder have lost the selection, and on drop it's gone as well.
WIERDER if I inspect the markup in chrome on the dropped element I still to see the "checked" attribute there... but no selection, jQuery detects no selection as well.
Checkbox lists however seems perfectly fine
