Hi team,
Facing this issue after an upgrade of kendo to 2021.2.511
I am trying to use kendo window ui jquery as a popup. With the same methods and property of window ui i am not able to minimize the window on double click if once it is set to maximize
Second time double click on the title window is minimizing the popup. But not first time
Tried a lot, but unable to find a solution for it. Request your help in guiding the same.
Attached is a screenshot reference to say, once the window is maximized, it is not minimising on first click of window title
Thanks,
Archana S


Hello,
I have been searching the forum and documentation, but I have not found if there is a way to replace the default p tagging with divs instead.
Thanks,
Brian
I have a dropdownlist with some years. The data source I am using directly an array of numbers eq: [2020, 2021]. I need to remove the 2020. When I am trying to call the method dropdownlist.dataSource.remove(dropdownlist.dataItem()) nothing happens

I have a grid that has some data, and when I press an "edit" button, I want a wizard with forms to edit the contents over multiple pages. Because of all the binding, I figured I could re-use the same wizard and popup and just reload the data inside. This works pretty well until I add validation. For some reason setting model data results in the value being NULL inside the model.
const model = discountWizard.steps()[0].form.editable.options.model;
model.set("requiredField", "required"); // required: true in form
model.set("optionalField", "optional"); // required: false in form
// results in
dirtyFields: Object { requiredField: false, optionalField: true }
optionalField: "optional"
requiredField: nullI've added a reproducer in Dojo: https://dojo.telerik.com/eQoGApIL
How can I fix this?
On a sidenote, the reset button doesn't seem to do anything by default, is that intended?

HI,
I have a Kendo UI spreadsheet control bound to a datasource. I need to format the currency fields within to include a thousand separator as follows 13,000,000. How is this possible in the schema/model/fields. Here is my code:
schema: {
model: {
id: "ItemId",
fields: {
ItemAmount: { type: "number", format: "#,#" }
}
}
}
This doesn't work and the number is displayed as 13000000
I have an editor function, where I receive a dataItem parameter. I'm wondering if there's a way to retrieve the column name or index from this dataItem.
https://docs.telerik.com/kendo-ui/knowledge-base/radio-buttons-custom-editor

Hi Team,
Kendo grid column has "aria-haspopup=true" even though there is no popup/submenu that can be opened from the header.
there are no column filters or column menus present in this example.
also see attached image where it shows the aria-haspopup attribute.
thank you