Hello,
Kendo UI version: 2022.3.1109
Kendo Scheduler Vue Wrapper version : 2022.3.1109
Browser: Safari > v12
By default, iPad on iOS greater than version 12 using Safari are show websites in desktop mode. When the Scheduler is displayed, the scroll is not working (even if we force the settings mobile to true or phone or tablet). So we can't scroll through the timeline.
When we switch the iPad to request a mobile site, the scroll is working.
With an iPad with iOS version 12 or below, there is no issue.
I think the issue is related to this github issue I found for the Spreadsheet wrapper for vue: https://github.com/telerik/kendo-ui-core/issues/5300
Is there a work around for that ?
Best Regards,
Fabien
We trying to implement a Kendo grid for my project and I was trying to add 'All' option in the pagination and used dataStateChange event to set the take value but getting event value as undefined.
Whenever we select "All" option from the dropdown, In dataStateChange method , I am getting selected value as "totalItemCount" instead of "All", but I can see both "totalItemCount" and "All" options in dropdown.
Example:
we have 1000 records as "totalItemCount" in a table, provided image below. So I am able to see all the records in the table but in dropdown we can see both 1000 and "All" option. We only need to see "All" not 1000.
We should not see "totalItemCount" in the dropdown(as well as selected option) and see only "All" as a selected option(as well as dropdown) when we select "All" option from dropdown.
Can someone help to solve this issue, please?
pageable() { return { buttonCount: 5, info: true, type: 'numeric', pageSizes: [10, 15, 20, 'All'], previousNext: true, pageSizeValue: this.pageSizeValue, }; }, dataStateChange: function (event) { this.loader = false; this.skip = event.data.skip; this.take = event.event.value === 'All' ? 1000 : event.page.take; this.pageSizeValue = 'All'; },
Hi Kendo Team,
I am using vuejs 2.x and vue datetimepicker (2.7.2), where I am facing the following issue.
When the user change to try the month/day/hour field using arrow keys (By holding the up arrow continuously for few seconds), the control is moving to year field undesirably and changing the year values.
/>
Hello,
Am having trouble using the .removeFiles() method of the Vue Upload component. I was wondering if anyone had an example of this in use or could point to some documentation describing how to use it? The Vue API documentation for the component doesn't seem to include this functionality. Is it even supported? I do see the removeFiles method when inspecting the component using web developer tools.
Thanks!
So here's the dealio....
I have this really cool ToolBar on my site that has a splitButton ToolBarItem. It looks great. Does all the things. ❤️
This button has a :menu-buttons property which is full of nice items to show when a user clicks the down arrow on the button. It does that really well.
Then, the page state changes. You know, because stuff is happening on our super dynamic interactive web page! Well, because stuff changed, the :menu-buttons items that were there aren't really representative of the current state of the page. We need to update them to reflect the now state of thing.
But the splitButton ToolBarItem is not happy about this. It like the original list and no matter how much we poke or prod it, it's refusing to play nice and update itself. Suddenly we are sad 💔
Poor ToolBarItem. I wonder if there's anything she can do to pay attention to what's going on, or is she just stuck and not willing to listen?
the below code works in stackblitz as expected but not in my local
Hello, Exists any way to show a tooltip in the bubble layers?
How to change color of row selected?