Hi
Could i add two checkbox in an kendoGridToolbarTemplate position=top ?
Regards

Hi,
I'm trying to set the editable propery of a column depending on an other field of the model.
You have this example in the documentation: kendoGridReactiveEditing
Let's say, if the field 'Discontinued' is false, I would like to disable the editable property of the product name field. For this, I added this to the column definition:
<kendo-grid-column field="ProductName" title="Product Name" [editable]="formGroup.controls.Discontinued"></kendo-grid-column>But it says then: 'Error: Cannot read properties of undefined (reading 'controls')'
How can I then access the formgGroup variable in the template?
Thanks.

Hi Team,
My requirement is such that while using a kendo grid within the panelbar im trying to filter the results using the filter boxes in the grid. During that state when I try to collapse and expand the panelbar I want the values to stay in the filter boxes and also the grid needs to display the filtered results itself. Currently on collapsing the expanding the panelbar the values are cleared and the grid results are reset to initial state without being filtered.
Kindly let me know regarding this or you could also forward me the appropriate point of contact.

I am wanting to leverage kendo Popup component with in a Grid. The problem I'm having is to isolate or parametrize the popup component so that it only opens for the cell data that the user interacts with. At present, the Popup uses an HTML style anchor and I have not determined how to pass a unique attribute so that the Popup opens only for the cell/row the user engages.
Please have a look at this Stackblitz stubbed out to show as example of scenario:
Any help from this community forum will be helpful and appreciated!!
Thx,
LJ
Hi Kendo Team,
I want to ask that currently Kendo has any feature by which I can create pdf on server side (specially java).
Q. What can I do ?
-- I can create a DOM with my styling and send the whole DOM to server for creating PDF.
Or you can guide me any other feasible solution
Q. What I basically want to Achieve.
-- Our Problem is : We have two platform and we want to Build Similar PDF from both platforms
A. Web Application (Angular )
B. Mobile Application (Reactive Native ) -- Do your library PDF Export Supports our Mobile Technology or any work around we can do ?
I think the Kendo UI DatePicker is a great component however I am having issues with the Angular version. It seems you have decided to try to save the user typing a / in some circumstances. If my date format is UK (en-GB) dd/mm/yyyyy and I type 8 you auto skip to the month but if I type 1, 2 or 3 then you can't be sure if I intend to type another digit for the day so in this case for days 1, 2 or 3 I must manually type the / to progress to the month entry.
This drives me and other test users of our application crazy. It also seems far less accessible. If the user has multiple dates to enter it is far easier for them to apply the same pattern every time, always enter a slash between day, month and year. Your solution may save a key stroke or two in some circumstances but it also requires greater thought by the user to remember the rules and switch behaviour when the initial digit of the day/month cannot have a valid second digit.
If you do insist on supporting these please can you make it optional, add a setting so it can be disabled.

Hi
Do i need to add bootstrap_min.css in angular.json to having bootstrap5 or just adding in package.json is enough ?
Regards
"@progress/kendo-theme-bootstrap": "^4.42.0",
"@progress/kendo-theme-default": "^4.42.0",
"bootstrap": "^5.1.3"
Hi,
I have an grid with ng-template on position top. My ng-template contains two checkbox
Couls each checkbox exclude another ?
Regards
When I use filtering with multi-checkbox, pagination does not work. How can I use both in the same grid?
Reference: https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/#toc-multi-checkbox-menu-filtering
I tried looking through various resources to see if this has been covered anywhere but was unable to find anything that solved this particular problem for Angular. My use case is that I have a date picker being used to enter a user's birth date. For this use case, time does not matter; it should be recognized as 10/27/2021 no matter where they are in the world. My problem is that if the user that initially creates this birth date lives in the Eastern US time zone, and then a second user that lives in the Central US time zone (1 hour behind), the date is shown as 10/26/2021 to them.
I understand the reason behind this. The javascript date type automatically adjusts to the user's local time. When the date was created, the date value was set as 10/27/2021 at midnight in the creating user's local time zone. Therefore when the viewing user retrieves it, its automatically adjusted 1 hour before that to 10/26/2021 11:00pm.
Nevertheless, this behavior makes the date input / date picker useless for calendar dates such as these, where time should not matter. My current preferred solution (although I am open to others if you have any) is to have the date be UTC time from front to back end. It gets created as a UTC (so 10/27/2021 at midnight in the UTC timezone, not local), sent to the back end server and stored as UTC, and then when retrieved, its displayed as UTC, not the user's local time.
I know that both UTC midnight date creation and date -> UTC string is possible with native javascript. Angular even has a native date pipe that accepts a parameter to denote which time zone you want the date to be adjusted to before creating the output string. I can't however find any sort of option for the date input component. The date being created at midnight UTC rather than midnight local time isn't a big deal; I could manually change that myself after creation by the component (although an optional parameter would be nice to avoid that). What I don't know how to do is get the date input to display the date after adjusting to UTC (similar to the date pipe example I mentioned). I would have expected it to maybe be some sort of option on the "format" input, but I wasn't able to find anything relating to timezone in the documentation. I also can't see any way to customize this myself as I only see the "date" type value exposed on the date picker component. While I could definitely manipulate this to get the output I want, it would completely trash the date value's integrity for any other usage.
Do you have any guidance for this issue? What do you recommend for proper "calendar date" usage when using these date components?
