When the datepicker is wrapped into a kendo-textbox-container with a floatingLabel, the label overlays the output of the format definition, see:
https://stackblitz.com/edit/angular-av3vbg?file=app%2Fapp.component.ts
Also, since version 3.3.4 of the package @progress/kendo-theme-material there is an offset problem with the label on focus. When the datepicker has a value set and you focus the field, the label gets a wrong offset. It jumps back to the correct position on blur.
Please have a look into this problems.
There seems to be problems when using the kendo textarea with a floating label. When I input text und blur the field, the floating label gets a wrong position.
https://stackblitz.com/edit/angular-4udcsz
Furthermore the label is vertically centered in the field, when there is no content. Maybe it would look better to align it at the top like in the material components. This could also let the user decide the initial textarea height without alignment conflicts.
I have a need to use Kendo UI for angular (any version) with a specific Angular version 2.4.7. Is there support for this? I currently am getting a message on npm install that I need at least angular 4.0.0 or greater. Unfortunately I don't have the luxury of simply upgrading my angular version.
Thanks
Craig
The controller:
app.controller('TestController',
['$scope',
function ($scope) {
$scope.OnButtonClick = function () {
$scope.grid.dataSource.fetch();
};
(function () { // init
// $scope.grid is NULL
$scope.grid.dataSource.fetch();
// grid is NULL
let grid = $('#gridID').data('kendoGrid');
})();
}
]);
The problem: after load all the controller the INIT function is triggerd but all Telerik UI controller are NULL in this function.
All other function run well and the Telerik UI object are available.
It's possible to have a INIT controller function with all Telerik UI component available for data loading and configuration?
Thanks
Hello,
Could you tell me if there is a way to implement the ripple effect provided by the kendoRippleContainer while selecting a tab of a TabStrip?
If it is not possible, are there any future plans regarding such an implementation?
Thanks in advance!
I am using the MultiDayView component and need to see 60 days ahead. What the component does now is put all those 60 days into the total width of the scheduler (without horizontal scrollbar). Is there a way to influence the column width of the day and automatically create an overflow with horizontal scrollbar?
When I bring a tab full screen, the filter menus of the grid inside are no longer visible.
Probably because they hang on the body of the document.
How can i resolve?
I use Element.requestFullscreen() for put the container in full-screen mode
Using the reactive forms and <kendo-timepicker>
Clicking on the 'Now' button populates the timepicker field with the local browser time. How do I change it so when when user click on 'Now', it populates the timepicker field with the UTC time?
Thanks for your time.
Hello,
Current behavior
In grid, when I use the paginator as an input it allows the user to type whatever they want in the field, meaning, it accepts
- numbers higher than available page count
- any alphabetical letters
Expected behavior:
- The input ignores the letters and when the number higher than total page count is typed (or coppied / dragged into) the value is set as the maximum page number
Code:
(in grid)
<kendo-pager-prev-buttons></kendo-pager-prev-buttons>
<kendo-pager-input></kendo-pager-input>
<kendo-pager-next-buttons></kendo-pager-next-buttons>
Thanks for any help,
Pawel
Hello,
I have a locked column. When I mouse over a cell in the locked area of the grid only the cells in the locked column are highlighted. I would like the whole row, including the area that is not locked highlighted. Can this be done with styling? Is there an event I can use to make this happen in code?
Thanks,
Scott