Hi I want to auto close the Popup box whenever any conflict is found in scheduler or when I press OK in warning box. it could either be a edit popup box or create new event popup box. I want both will be auto close after warning message. PFA the same
Regards
Pankaj
Hi Telerik,
As per title, is there a way to enable it?
There is no indicator shown to resize selected image.

Hello!
Maybe it's a known thing, but I couldn't find a solution. In the grid, I display the data that comes from the server in Windows 1250 format. I display them correctly through the template. But the filtering doesn't work. If I enter a query with special characters, it does not return correct results. It even offers incorrect values (I am sending a picture). I need client side filtering.
Well thank you.
Hello, kendo practitioners! I always get a lot of help.
While creating an input form using KendoForm, I used colSpan to create a 2-space field, but it is displayed out of proportion as shown below.
The field's label area is displayed larger.
The code was written as follows.
$('#grid').kendoForm({
grid: {
cols: 4,
gutter: 20
},
items: [{
field: "field1",
label: "Field1"
},{
field: "field2",
label: "Field2"
},{
field: "field3",
label: "Field3",
colSpan: 2
}]
});When a CheckboxGroup is included in an HTML form, the built-in reset function does not work for the checkbox group, unlike the individual checkboxes, as demonstrated in the following link: https://dojo.telerik.com/ureSOHoB.
On the Kendo demo page, create a table and place cursor in cell. The table wizard button used to be displayed on the toolbar, but now is not visible.
Is this a bug, or was the feature removed?
We're using kendoUpload control in a .NET MVC project, when selecting multiple files that are tiny in size there is no problem to select and upload many (37 txt files with a size close to 0 used in example). But when trying upload as little as 6 files with a size of around 400Kb the ui seems to upload 1 file, freeze and after some 20 - 30 seconds returns an upload error (hits the "error" method of the kendoUpload object that is).
$("#files").kendoUpload({
async: {
chunkSize: 2048000,
concurrent: false,
saveUrl: infra.App.baseUrl + "Api/Upload/AdicionarAnexos/" + wbc.Upload.sPastaDestino + "/" + wbc.Upload.nCdModulo,
autoUpload: false,
},
...
}
The API documentation for the TreeView shows a loadCompleted event, but I'm not seeing it in the build I'm using. 2021.3.1207
https://docs.telerik.com/kendo-ui/api/javascript/ui/treeview/events/loadcompleted
Thanks
So this is the code.
@(Html.Kendo().DatePicker()
.Name("frShift")
.Start(CalendarView.Year)
.Depth(CalendarView.Year)
.Format("MMMM yyyy")
.Value(DateTime.Now)
.Min("01/01/" + Model.StartYear)
.Max("12/31/" + Model.EndYear)
.HtmlAttributes(new { style = "width: 100%;", placeholder = "Select month...", title = "Shift From" })
.Events(e =>
{
e.Change("shiftDemand.updToRow");
})
On local it is opening while on server it is not opening due to date control. If we remove date control then it will load. Please respond.
It is on Local
but once i deploy on QA and PROD server its loading but not opening.