Here is the code how I built my kendo Chart
$('#chartR').kendoChart({ title: { text: "Selected Rep Compared to All Reps (March 2018- April 2017 Only)"}, legend: { position: 'bottom'}, tooltip: { visible: true,template: '#: series.name # #: value #%'}, seriesDefaults: { type: 'column', overlay: { gradient: 'none'}, categoryField: 'Chain'},//seriesColors series: [{ data: newData, name: 'Selected Rep', field: 'Per2018Amount'},{ data: totalData, name: 'All Reps', field: 'Total2018Amount'}], valueAxis: { labels: { format: '{0}%'}}})
As was in my goal i need to define separate data for each of series but onLoad on mobile devices i cant see anything. What the problem can be? Also I'm refreshing charts on screen dimensions changing with
var chartR = $('#chartR').data('kendoChart') chartR.refresh();
And with select I'm changing data for one of the series
chartR.setOptions({ series: [{ data: newData, name: 'Selected Rep', field: 'Per2018Amount'},{ data: totalData, name: 'All Reps', field: 'Total2018Amount'}]})

I have created a dojo example that I just can't seem to get to work correctly. Grid with two rows of numbers
It creates the grid correctly but does not show the rows. What am I doing wrong?
I have an HTML table that I'm creating a grid from, but I'm not able to change the height. The grid is within a splitter and the splitter pane has a div before the grid but I don't think this is causing the problem. Even without the splitter, I'm not able to size the grid to fill the window.
Example:
http://dojo.telerik.com/uzudOzEt/2
References:
Resize and Expand the Kendo UI Grid to 100% Height
Expand Grids to Match the Height of TabStrip Containers within Splitter Panes


Hi - I have columns that I want to show in the ColumnMenu:columns or not based on a variable. What I have right now on the column definition is " menu: false," but in some cases I do want the column to show up. I tried making it a function, not even checking the variable yet:
menu: function (e)
{
return false
},
which doesn't work. Is there a way to do this?
Thanks
Lisa
Hello
I have 2 topics concerning the KendoUI Upload Widget:
1. Drag of uploaded image in Safari browser (Mac) starts upload
I have a DIV area onto which users can upload images. In the background I create a thumbnail of that and display it in the mentioned DIV area. Recently I realised in Safari browser (Mac) that if I drag such a displayed thumbnail onto that DIV it will upload that thumbnail too as an image and therefore a copy will be created. I would like to avoid that. Let's say:
- Ok: Drag images from outside into upload DIV
- Not ok: Drag thumbnail displayed in the DIV onto the same DIV that starts an upload
Since this "problem" exists not in Firefox and Safari I assume this is a browser behaviour. Question is if I can check whether a thumbnail will be re-uploaded or an image from outside.
2. Case sensitive upload validation
I have created a filter upload be restricting to specific image types:
allowedExtensions: ['.jpg', 'jpeg', '.png', '.gif', '.svg', '.mp3', '.mp4'],It works fine and does what it should. Recently a customer told me he can't upload his JPG-File. I checked that and found out that the extension was uppercased (.JPG). After renaming his image to 'xxx.jpg' I was able to upload the image. That tells me that the extension check is case sensitive. Of course I have enhanced the allowedExtenions list with all valid image extensions in upper case which will cover most situations. But what if someone wants to upload an image called 'image.Jpg'? Technically it is correct but will be prohibited.
All over: If it doesn't break the KendoUI security rules it would be nice if the extension check is not checking for case sensitive.
Regards

I have used Kendo Grid in my project, i need access values in each row, row wise. And need to compare the values between two columns.
For example:-
Student ID Student Name Student Physics StudentChemistry
1 xx 44 33
2 yy 55 66
The marks between two columns is required to be compared, and have to highlight the cell which contain less value.
Any row wise data iteration example would be helpful.
Thanks in advance.
Dipak
Hello,
I have a case when I want to have different behavior for clicking when user have clicked with control key pressed. Unfortunately I have no information on data which is passed to 'change' handler. Is there a way to obtain this information and have condition in logic depending if ctrl key is pressed or not?