I have a vertical oriented menu with a height of 100%. Is it possible to set the height of the submenu to 100%? Or does this involve changing the rendering template within the kendo.ui.menu.js? I tried to set the following css classes, without success:
Hi,
I am investigating to use the datepicker in a AngularJs environment.
The problem I am facing now is that the value of the datepicker I get is a String, not a Date. And I do not want to add code to parse, validate etc.
In my test, I select a date in the calendar. The value is writen to the model, but as the view shows, its a string, not a Date.
This is the (significant part of) the test-set:
The view (kendoui-view_datepicker.html) <h1>Test of the datepicker</h1>
<input kendo-date-picker data-ng-model="data.testDate" k-options="datePickerConfig"/>
Model date: {{data.testDate}} analyses: {{analyseDate()}}
The script (kendoui-angular-app-datepicker.js): angular.module('SampleApp', ['ngResource', 'ngRoute', 'kendo.directives']).config(function ($routeProvider)
{ $routeProvider.when('/', { templateUrl: 'kendoui-view_datepicker.html', controller: HomeCtrl }).otherwise({redirectTo: '/'}); });
function HomeCtrl($scope)
{
$scope.data = {
testDate: new Date()
};
$scope.datePickerConfig = {
format: "dd-MM-yyyy",
parseFormats: ["yyyy-MM-dd", "dd/MM/yyyy", "yyyy/MM/dd"],
footer: "Currently #: kendo.toString(data,'dd-MM-yyyy')#"
}
$scope.analyseDate = function () {
var tp = typeof $scope.data.testDate;
return $scope.data.testDate + " " + tp;
}
}
I attach these files plus a start-up file and the used kendo-angular.js
We bought your product recently and we have a project requirement to use the Kendo UI Scheduler extensively.
Currently our requirements are,the data comes from API and needs to be stored locally in localStorage and feed to the scheduler. Also the data created by the users in the scheduler should be persisted locally in localStorage and feed to the APIs which will save to the database.
We have seen your demos and we could not match with our requirements. Could your please provide support to acheive our project goal.
Also we have another requirement of scrolling the configured data horizontally over the weekdays.
Is there a way to temporarily disable the edit functionality on the grid? I tried setting editable to false on a previously editable grid, but it didn't pick up the new configuration change.
I need to use MultiSelect with a large data source (15K+ items) and am trying to figure out if this is possible with reasonable performance. I've enabled server-side filtering, but the control still tries to pull down the entire list of items on initialization. Part of my dilemma is that one client has 10K+ items that are all in the format of: 12345***** where the first 5 characters are always the same. I think ideally the control would have some sort of virtualization where it could pull down a page of data at a time while the user scrolls through it.
Are there any tips for working with the control using large data sources?
I'm running it in the context of an Android app, and when I go to the kendo page part it flashes white first, then goes to the correct style/dark background. Is there any way to not flash white when starting up?
I've got a Kendo UI Grid with row details displaying tabs, using the kendo-template and tabRowDetails. I've got a div in the tab that contains text with over-flow-y: scroll so that the user can scroll through the text in the row detail without having to take up the whole page. The scrolling works fine with Firefox, Chome, and Safari, but the vertical scroll does not work with IE11(scrolling with mouse wheel works ok). The scrolling lags when clicking on the scroll bar and dragging...