Hi, in our team we had issues with a tricky bug that we discovered in Safari for Kendo UI for Angular.
1. In Safari, make sure that content is scrollable by having content that does not fit in the current size of the browser window.
2. Open a kendo window over the content, with a kendo datepicker inside.
3. Possibly make the browser window smaller in height (depending on the screen resolution).
4. Open the datepicker popup.
Kendo window along with its content stay were it is.
The kendo window jumps upwards and is partially out of view.
If the page is still scrollable the user can scroll back to see all of the kendo window. For my team the problem was that we have an "overflow: hidden" css style on the body to prevent scrolling outside the kendo window when it is opened. This is problematic for the user since they cannot scroll back to see all the content of the kendo window. This problem only happens in Safari.
To solve it we set "position: fixed" on the wrapping element of the kendo window.
https://stackblitz.com/edit/angular-p1tgbe-u8g3ff
I would like to prevent the grid cells from wrapping and increasing the row height.
Instead I just want the text to be cut off and ending with ellipsis. I tried styling with column classes "white-space: nowrap", but that does not work.
Is that possible?
Thank you!
Hello!
I'm working with a grid that contains several Kendo dropdown lists. The data for these dropdowns relies on certain values within the grid, which can vary for each row. Currently, the dataset from the last row is being applied to all dropdowns in previous rows. How can I ensure that each dropdown in a row uses its own unique dataset based on the values specific to that row?
Thanks,
Balazs
UPDATE:
The functionality is operating correctly as intended. The issue only occurred on my end.Hi Team,
I am trying to implement cell selection aggregates in my grids, similar to examples shown here :https://www.telerik.com/kendo-angular-ui/components/grid/selection/aggregates/
Looks like the aggregates does not get calculated correctly when grouping is done on the grid. Is this a limitation or am I missing something.
Appreciate your help.
Kaustubh
Hi!
I implemented a filter over all columns to implement a search like the example in the Overview-section for the Grid component.
I would like to highlight all text in the columns yellow that match the entered search text.
Is that easily possible?
Best regards,
Gerald
Hi. i have some questions about focus on clear button
If click on kendo-textbox and input value, clear button will appear on the left side of the field. if you press the tab button, the focus will shift to this clear button.
<kendo-textbox
[style.width.px]="200"
[clearButton]="true"
></kendo-textbox>
If select value in kendo-combobox, clear button will appear on the left side of the field, before button show\hide list. But if press tab button, focus will shift to next DOM element
<kendo-combobox
[data]="listItems"
>
Please, tell me why there is such a different behavior when pressing tab. Why doesn't the focus shift to the clear button in kendo-combobox.
Thanks.