Hello Team,
Recently, I upgraded my web app to use Kendo's latest version of UI for ASP.NET MVC i.e. 2016 Q1. Everything worked perfectly fine except a small problem with Gantt inside a TabStrip. Please take a look at this snippet: http://dojo.telerik.com/UCETu.
It works fine but It just keeps the columns area collapsed by default. Any suggestions?
Thanks,
George.
hi,when using the tooltip feature of the bar chart,we find sometimes(not always,according to the window initial size ) it will fires the windows resize event.
chrome is fine ,this problem only occurs in IE8
our code snippets :
var currentHeight;
var currentWidth;
$(window).resize(function () {
var windowHeight = $(window).height();
var windowWidth = $(window).width();
if (currentHeight == undefined || currentHeight != windowHeight
|| currentWidth == undefined || currentWidth != windowWidth) {
currentHeight = windowHeight;
currentWidth = windowWidth;
kendo.resize("#ourChartDiv"); // we want to dynamically resize the chart size according to the window size
}
});
we find kendo.resize method will remove the tootip again,so we got the following exception
in kendo.ui.js ( Kendo UI v2014.3.1119 )
var size = {
width: this.element.outerWidth(),
height: this.element.outerHeight()
};
this.element is null
I want know how to resolve or avoid this problem ,thanks in advance !
Hi,
Over the last few days, I tried to build a demo using the kendo ui. I came across a few problems.
One of them is inability to change current column with mouse when, grid has editable.mode set to inline and sortable widget was added.
I have prepared simple demo http://dojo.telerik.com/EQIsA.
Is there any possibility to change column using mouse and sitll to have a sortable widged added?
Best regards,
hello,
i need to POC Angular2 + Kendo UI,
My company want to new UI framework tools for new Company UI framework. My job is Angular2 + Kendo UI POC.
Where can i found correct version for npm install and documentation of Kendo UI Angular2 , we are using ATOM editor for development.
Regards,
Migrating from version 2015.2.902 to version 2015.3.930 cause splitter not to be generated at all. Also in 2016.1.112 it doesn't work
Code that working well in 2015.2 :
<div kendo-splitter role="main-view" class="main-panels1 1 " k-orientation="horizontal" ng-style="{height:contentHeight(-40)}"
k-panes='[{ collapsible: true, size: "50%" }, { collapsible: true }]' >
Hi.
I'm trying to implement an Angular project using KendoUI but I'm only able to add controls using JQuery syntax but not Angular syntax.
This works :
<div id="paymentRequestsGrid"></div>
and in my controller I do this :
var grid = $("#paymentRequestsGrid").kendoGrid({
...
However, this does not work :
<div id="paymentRequestsGrid" k-options="gridOptions"></div>
and in my controller :
$scope.gridOptions = {
...
I does not crash my app, just doesn't render anything on the web page. I've included the following in my project:
* kendo.common.min.css
* kendo.bootstrap.min.css
* kendo.bootstrap.mobile.min.css
* jszip.min.js
* kendo.all.js
* kendo.culture.is-IS.js
I just wanted to throw this up in the air and hope this will, at least, get me in the right direction ;)
Best regards,
Karl
Hello Friends.
I have two grids in my MVC project. One is main Grid which is contain Employee Payments info with custom button [SelectEmployee] to access other grid which is inside a window with all employees list.
Grid_01 :
[AddNew][SaveChanges][Cancel][SelectEmployee]+-----+-------+-----+|EmpId|EmpName|Amout|+-----+-------+-----+| 01 |Name_01| 5000|| 02 |Name_02| 6000|| 03 |Name_03| 7000|+-------------------+Amount is Editable.
and the second grid which listed all employees inside the window is like
Grid_02:
[Add to Payment]-------+-----+-------+-----+------+-------+|Select|EmpId|EmpName| Job |Amount|Payment|-------+-----+-------+-----+------+-------+| [] | 01 |Name_01| ACC | 5000| Bank || [] | 02 |Name_02| HR | 6000| Cash || [] | 03 |Name_03| IT | 7000| Cash |+-----------------------------------------+
So, My question is. +
1. when open grid_02 window, if employee already available in Grid_01 then it has to be auto selected (checkbox).
2. if i select something from Grid_02 and click [Add to Payment] button it has to be auto save in the DB then Grid_01 auto refreshed.
3. prevent from save/select duplicate data.

Hi,
Is there a way to disable because it does not use the dependency?
thanks
I am using Angularjs in combination with bootstrap. The chart displays after the data has been retrieved using the ng-show="hasData()" option. I want the chart to fill the width of the parent element.
When the chart displays: the "g" element is only 400px wide while the "svg" has 100% width. In the controller constructor I resize the containing element when the window is resized, however, this doesn't happen until the window is resized.
I attached two pictures showing what I'm talking about.
