Kendo UI is a framework for modern HTML UI, by Telerik. It follows the latest HTML5, CSS3, and JavaScript standards, it delivers everything needed for client-side, jQuery-powered development in one integrated, compact package.
0
votes
0answers
6 views
combobox in kendo ui grid
I have this code to show kendo grid
$(document).ready(function() {
$("#grid").kendoGrid({
dataSource: {
transport: {
...
0
votes
0answers
15 views
Page showing not rendered HTML tags instead of rendered HTML
I am reading the contents of the blog post from a text file, it’s in html format and I want to show them on page as rendered html, but it’s not happening all its showing is simple text with html tags ...
0
votes
1answer
4 views
Kendo grid editRow method: suppress popup
I've to created a customised 'update' button for a Kendo Grid.
Basically, it programmatically puts the appropriate row into edit mode (using editRow), updates some fields to specific values (using ...
0
votes
3answers
22 views
No window popup when including 2 jquery files in code
In my page, the jquery.min.js 1.9.1 file is necessary to show a popup window. But in my page, I have a navigation bar that works using the jquery.min.js 1.8.1.
Now both of these files are having a ...
0
votes
0answers
14 views
Display column values in dropdown when clikced on column filter icon
I am adding columns in kendo ui grid dynamically. What I want is display values of that particular column in dropdown list when I click on the filter icon.
How can I do this.
Also, how can I ...
0
votes
1answer
30 views
MVC Kendo UI - Pass view data to controller
I am new to MVC Kendo. I am creating a sample programme with one Datetimepicker, two combo boxes and grid. What I want to know when I select the dropdownboxes data and datetime picker date I want to ...
1
vote
0answers
16 views
Kendo Modules and RequireJS (r.js) not playing nice. (Error on loading)
I am using Kendo UI version 2013.1.514 and RequireJS (r.js version 2.1.6)
My project runs perfectly under the standard RequireJS on-demand loading.
However, when I try to use the optimizer, none of ...
0
votes
1answer
6 views
How to have a numeric text box for editing a cell in a Kendo UI grid?
Looking at the Kendo UI grid demos, when editing a cell that is bound to an numeric value, the input becomes a numerictextbox, but I can't seem to reproduce that behavior (on my side in stays a plain ...
0
votes
0answers
15 views
Kendo MVC Grid Within a Window DataSource Read
I'm trying to populate a kendo grid within a kendo window in MVC and am unable to find what is wrong. The window is created, and the grid is created within the window... however the DataSource's Read ...
0
votes
1answer
25 views
Why is `data(“kendoGrid”)` undefined?
I have two Kendo grid definitions, in partial views, that are exactly the same save for the partial view model and the grid item model. Only one of then gives me the JavaScript console error 'Cannot ...
0
votes
1answer
35 views
Assign a class to a css attribute selector
I am using Kendo UI with ASP MVC3 to build some forms. I am using the dropdown and datepicker widgets, which are styled larger that standard inputs. To ensure standard textboxes will match, Kendo has ...
0
votes
0answers
15 views
How to call custom js function to describe the grid column title?
My grid has six columns,I want to custom the grid's column title,Now I write six times and it works well.
columns.Bound(p => p.Grade1).ClientTemplate("#=SetGrade(Grade1) #")
...
0
votes
1answer
22 views
Kendo Custom Widget, Typescript and jQueryStatic
When using the Kendo Custom Widget Boilerplate in Typescript, I find that I'm losing the intellisense on $ because it's type is noted as any rather than JQueryStatic. Is there a way, other than the ...
0
votes
0answers
11 views
Chosen JS control inside KendoUI grid
I'm using the Kendo UI grid and I'm having a bit of trouble with implementing a custom editor. The control that I'm using is a branch of Jquery-Chosen (link below). I'm pretty sure that my code has no ...
0
votes
0answers
4 views
How to get the index from a kendo tabstrip using tabGroup.find()?
This is what I am trying to accomplish.
var tabIndex = 4; //hard coded NOT WHAT I WANT
var tabStrip = $("#navigationTab").data("kendoTabStrip");
var item = ...