kendo-ui

header and footer not displayed in Kendo UI Mobile PhoneGap Application For Android

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-17 05:34:47
问题 I created a phonegap application for android using Kendo UI. Here, the problem is.. header and footer not displayed in android device. It was working fine on IOS device and Normal browsers. Check this link: http://demos.kendoui.com/mobile/application/index.html From above link, they displayed the o/p on ios and android with same code. In IOS header was displayed fine, but not in android device. But, I want to display the header with back button using Kendo UI for android.. How can I do this..

Kendo Stacked Bar Chart configuration

六眼飞鱼酱① 提交于 2020-01-17 03:59:52
问题 I have an MVC app and my controller is passing the following json data to my view data: { "Category":"Q1 2013", "Name":"Female", "Count":5000 }, { "Category":"Q1 2013", "Name":"Male", "Count":5000 } { "Category":"Q1 2012", "Name":"Female", "Count":3500 }, { "Category":"Q1 2012", "Name":"Male", "Count":5000 } I need to know how to configure my Kendo stacked bar chart to display the data like this http://jsfiddle.net/ihatemash/B6LSX/ I can't figure out how to configure the series and category

Kendo UI Chart - Want tooltip to always show

三世轮回 提交于 2020-01-17 03:37:05
问题 I need some help with how Kendo Chart tool. I am trying to plot a line graph with bookings on particular date. I have a booking on a particular day and can see the circular plot. If i hover on it i can see the tool tip which contains the summary of the booking. I want this tooltip to always be visible/open. At the moment it only happens on mouse over. function createChart() { $("#chart").kendoChart(data); var tooltip = $("#chart").kendoTooltip({ width: 120, position: "top", visibe: true })

Why is CascadeFrom() not doing anything?

坚强是说给别人听的谎言 提交于 2020-01-17 03:25:17
问题 I'm really new to Kendo UI, and I'm having problems with CascadeFrom() not calling an action on my controller. Here's the bare bones of my problem: // The parent dropdown <select id="Testing"> <option value="0">Vehicle</option> <option value="1">Driver</option> <option value="2">Trailer</option> </select> // The dynamic dropdown @(Html.Kendo().DropDownListFor(m => m.VDTId) .DataValueField("Id") .DataTextField("Item") .DataSource(ds => { ds.Read(c => c.Action("GetVDT",

how to create row rapidly - Telerik Kendo UI MVC grid pop-up mode

感情迁移 提交于 2020-01-16 15:46:14
问题 I have a grid similiar that. But I don't want to close pop-up window; after clicking update button, i want to save record and clear all (or some) fields and continue to create (other) new record. So user can re-insert new record rapidly (multiple insert in the same window). Finally user click the "cancel" (or close) button and popup will be closed. How can I do that. 回答1: Subscribe to Grid Edit/Save javascript events and follow the example below var _PreventWindowClose = false; var

Kendo UI Listbox displaying duplicate items

懵懂的女人 提交于 2020-01-16 08:26:07
问题 I'm using a Kendo UI Listbox control to display items. I'm populating the control by specifying a javascript array as the data source. Here is the page markup. <div> <select id="selectedview"></select> </div> <script> $(document).ready(function () { $("#selectedview").kendoListBox(); }); </script> And here is the javascript / JQuery that I am using to populate the Kendo UI Listbox control. var listBox = $("#selectedview").data("kendoListBox"); listBox.clearSelection(); $("#selectedview")

Scrolling issue with kendo chart on mobile

谁说胖子不能爱 提交于 2020-01-16 08:04:53
问题 I have multiple kendo charts with panning and zooming enabled. On the mobile view, each graph takes up 100% width and since panning and zooming is enabled, the touch events are not fired and hence, no scrolling up or down in mobile. I tried attaching an event handler but to no avail. I want to enable browser touch events when the touch event fires from somewhere other than the chart area (legends or blank spaces) as highlighted in the image. 来源: https://stackoverflow.com/questions/59676975

How to find out why Javascript is downloading so slowly?

醉酒当歌 提交于 2020-01-16 05:20:08
问题 I have an ASP.NET MVC project, which is running as slow as molasses. I opened up Fiddler on one particular call, and found several calls where there's a lot of room for improvement, to say the least: The blue lines I understand are calls to my controller, and I understand where to go to optimize that stuff. But I see a bunch of green lines (which I assume means javascript), and those are also taking a heckuva long time. I must assume that jQuery and Kendo scripts don't normally take 4-6

Kendo UI Remote DataSource Modification

好久不见. 提交于 2020-01-16 01:53:06
问题 I have a Kendo DataSource that takes its data from a remote server (Json) and it bind the data to a kendo template in the client-side. On the client, right now I just display the Data. However, I want to add/remove data in the dataSource as well. How can I send the dataSource after modification back to server and store it in there ? Here is a good example of what I am trying to do. While this example reads its data from a local variable, would you please let me know: How can I store the

Not able to refresh the data grid after selecting the column dynamically

僤鯓⒐⒋嵵緔 提交于 2020-01-16 00:52:33
问题 I am just started with kendo UI grids, And I could able to make out how to integrate the kendo with angularJS. But I was trying to implement some thing like dynamically adding/selecting or unselecting the column names, then the data grid should display the columns accordingly in the data table. Ex: Now when I selecting a new column in the right side of the grid, The datatable is updated with that selected column Hope this image gives a clear idea on what I am pointing So, I want to achieve