Kendo is a framework for modern HTML UI and grid layout, by Telerik. It is following 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
Scrolling horizontally to kendo grid displays the header incorrectly
I am using kendo ui grid. I have added columns to it dynamically. I have not set height and width to grid. However the div that is holding the kendo ui grid have height and width specified.
What ...
0
votes
1answer
18 views
Kendo not working with jQuery 2.0?
It seems that Kendo UI web does not work with jQuery 2.0.0. I saw a problem in my app after updating. The grid defaults to even width columns, the width value is no longer used.
To confirm that it ...
0
votes
0answers
6 views
Kendo grid duplicate records inserted
I have a kendo grid in inline editing mode.
When I press "Add new item" button, new row is added and set to the edit mode.
By pressing the "Update" button multiple time, I'm able to insert duplicate ...
0
votes
0answers
9 views
KendoGrid cell event on focusout doesn't work properly on mouseclick
When focusout event attached to a cell in Kendogrid through delegate as below, the event gets fired when that particular cell is selected on mouseclick rather than getting fired when focus moves away ...
-1
votes
0answers
10 views
Knockout Kendo UI Grid Implementation with MVC4
Can anyone help me with the implementation of the code shared through the following link -
http://pinaki-mukherjee.blogspot.in/2013/01/kendo-knockout-grid-bind.html
I want to implement the above ...
0
votes
1answer
24 views
Kendo grid Insert new record on the last page, last row position
I'm using kendo grid in inline GridEditMode and GridInsertRowPosition set to bottom.
Ajax is used for the data binding. Sorting is enabled and sorted by DateTime field.
Page size is set to 10.
To ...
0
votes
0answers
19 views
kendo ui grid crud with codeigniter
pleas help me with sample kendo grid with codeigniter controller
my view
$("#grid").kendoGrid({
dataSource: {
transport: {
read: {
url: 'schoolC/crud',
...
0
votes
0answers
11 views
Kendo command template show/hide on condition
I know I can set values of regular data columns within a kendo grid like this:
columns: [
{ field: "Test", template: "#= Test? 'test successful' : 'test failed' #" }
]
However, I need to set a ...
1
vote
1answer
16 views
Workaround for kendo grid column resize bug in combination with IE
I think I have found a bug in the kendoui grid when column resizing is enabled (version 2013.1.319). All columns but one disappear when resizing.
I'm testing this in IE9 and IE8. Chrome does not have ...
0
votes
1answer
23 views
Why does the Kendo Grid show false in all records of my grid, even when some have true?
I have put together a simple jsfiddle demonstrating the issue. It has a grid with two records. One has a true value in in the Boolean column and the other has a false.
I have logged the data to the ...
0
votes
1answer
35 views
Kendo UI AutoComplete as editor in grid - how to display selected value?
I do have a Kendoui grid in which I fill one column with the AutoComplete as editor:
{ title: "Desription",
field: 'description',
editor: function(container, options) {
var input = ...
0
votes
0answers
6 views
kendo grid server filtering does not work
I have the following code and the filters are not getting passed into the request query string.
The request parameters for paging are passed but none of the filters are passed. I'm new to kendo. Am I ...
0
votes
1answer
18 views
How to Get the Filter Input on Kendo Grid
I have a kendo grid like this:
var grid = diffGrid.kendoGrid({
autoBind: false,
filterable: true,
pageable: true,
resizable: true,
sortable: true,
columns: [
{
...
1
vote
2answers
26 views
Kendo grid expanding column
I'm using kendo grid (which is awesome!) and one of my columns contains a description field. Does kendo come with support for expanding columns? i.e. if over a certain length display a '+' expand icon ...
0
votes
1answer
27 views
Why does the KendoUI Grid Transport Create event gets raised multiple times, and even when the action is Update?
I have put together a fiddle that demonstrates that in the KendoUI 2013.1.319, when editing a record in the grid and press the Update button on the edit dialogue, it actually raises the Transport ...
0
votes
0answers
24 views
click on image not working correctly
I am displaying data in kendo ui grid. I have added columns dynamically in the grid.
I have created a first column that displays an image. Based on the row values for every row I have added a click ...
-1
votes
0answers
19 views
Kendo grid json issues on ie 8 [closed]
I am updating the data using ajax call. after store into the data base again passing the json value into kendo function but after updating the kendo table it's not woking any standard functionality ...
2
votes
1answer
20 views
Jquery .Post not display returned data
Using kendo open source with mvc3.
I have a kendo grid with selectable rows. When a row is selected, it should send a value to the controller method, then render a new view based on that value. I ...
0
votes
0answers
6 views
Copy from kendoui grid using Ctrl+C (after selecting rows)
I'm trying out KendoUI Grid (web) to see if it's suitable for our project.
So far, so good, but I've run in to a problem, copying from the grid!
I'd like to be able to allow the user to select cells ...
0
votes
0answers
49 views
kendo-ui grid serverfiltering column filtering dropdownlist
I am trying to get the kendoui grid to support filtering with a dropdownlist as the filter. I want users to be able to pick from a list of all available options, rather than requiring them to type in ...
2
votes
1answer
79 views
Writing a generic with chaining instead of columns of grid
I have some columns in my script like following :
<script>
$("#grid").kendoGrid({
height: 400,
columns: [
"ProductName",
{ ...
0
votes
0answers
51 views
Kendo grid with dropdown edit values show object properties
I have a Kendo grid with a Employee dropdown column, much like the examples that they provide. My dataset has a employee ID. I created a model that holds the employee object and deliver that to my ...
0
votes
0answers
13 views
How to update value on key change event not on keyup in kendogrid inline edit
Using the data-value-update attribute
` <div id="view">`
<input data-value-update="keyup" data-bind="value: inputValue" />
</div>
<script>
var viewModel = ...
0
votes
3answers
40 views
How to make part of tooltip hide in a grid,it seems my codes does not work
How to make part of tooltip hide ,it seems my codes does not work
Here is my codes:
$("#Grid").kendoTooltip({
filter: "td",
content: function (e) {
...
1
vote
1answer
26 views
Escaping single quotes in view (kendo grid)
I have a view with a Kendo grid in it.
In the piece of code that follows, my '#=Name' contains a string. This string sometimes has a single quote in it. As you can probably guess, this single quote ...
0
votes
1answer
47 views
How to add a new item on a child grid on kendo-ui grid?
How can I achieve this scenario using kendo-ui:
I have a grid that has the names of students and a child-grid with all the scores in each class. My data source is hierarchical and comes from a ...
0
votes
1answer
102 views
Set title and additional properties to kendo ui grid
I am using kendo ui grid to display data. I want to set title for the grid.Is there any way to set it.
Also I want to set some additional/custom property for grid which will help to identify the grid ...
0
votes
0answers
30 views
Custom Sorting in KendoUI grid/datasource
I have grouped data in dataSource as:
var dataSource = new kendo.data.DataSource({
transport: {
read: {
url: " ",
}
},
//and some other parameters specified
// group by the ...
0
votes
0answers
57 views
Kendo UI with JSON datasource doesnt like the letter o as a key name
I just started messing with kendo ui and I ran into an interesting issue that I dont understand. Perhaps you all can help.
I am doing a simple grid:
function buildGrid() {
...
0
votes
2answers
64 views
Find image added in the column for all rows and attach click event to it
I am using kendo ui grid. I have added columns dynamically in the grid. I have created first column in the grid as below to display image in it. I am able to see the image in the grid.
I have added ...
0
votes
2answers
37 views
kendo Datasource return custom value
I have a remote datasource like this,
var datasource = new kendo.data.DataSource({
autoSync: false,
batch: true,
transport: {
read: {
url: "some_url",
...
0
votes
1answer
97 views
Create a blank first column in kendo ui grid
I am new to kendo ui grid development.
I have a requirement where I want to display data in kendo ui grid.
I am able to bind the data to kendo grid using java-script.
This is how I did it.
...
0
votes
0answers
22 views
Kendo UI Web tabbing to command buttons
Command buttons in a grid seem to have their events captured and disabled from bubbling up when a column header on the grid is picked first. See here for a working example.
The process is as follows ...
0
votes
1answer
272 views
Grid not binding json data - MVC Kendo UI Grid bound via Ajax to a WebAPI and OpenAccess ORM
Below is a sample of MVC Kendo UI Grid bound via Ajax to a WebAPI. The WebAPI uses OpenAccess ORM as data model.
The below code loads the grid with the auto generated columns as per the model and the ...
0
votes
0answers
119 views
Kendo UI Grid: columns.filterable with dynamic options
I work with my Kendo grid with dynamic columns, partially configured via ajax requests.
So I have:
model: {
fields: configureflds(param) // MVC method returns fields configuration in JSon ...
1
vote
1answer
43 views
Why does the KendoUI Grid not rollback a delete when the options.error function is called?
I have put a fiddle here that demonstrates the issue.
http://jsfiddle.net/codeowl/fmzay/1/
Just delete a record, and it should rollback the delete as I am calling options.error from inside the ...
0
votes
1answer
58 views
Kendo Grid Filter on a dynamic column
I am working on a Kendo Grid which has a Status column that is an aggregate of statuses of several other columns. I track the individual statuses as integer values and the aggregate column should show ...
0
votes
1answer
71 views
Kendo grid cancel causing deletion of row
I am using kendo grid and the grid.And on a particular situation i am adding data to the datasource of the grid using grid.dataSource.add() method.The following is the configuration of my grid.
var ...
0
votes
1answer
44 views
Kendo grid initializing number cells
By default, all fields in datasource marked as number will have their cells filled with an initial value of 0. I'd like to have the cells empty when the grid is created without turning the field into ...
1
vote
0answers
40 views
Filtering Date with remote data in Kendo Grid
My app have the same code as in the example grid-crud, all work ok with filtering, sorting, paging, etc.
But I have add some Date field, and the filtering is not working, this is the error:
Operator ...
0
votes
0answers
77 views
How to pass List of parameters to controllers while using grid's sorting and paging?
It seems that the kendo ui only suppert to pass the parameter like string,int ,but not List this custom class.
ActionResult GetStudentImfo([DataSourceRequest] DataSourceRequest request, string name, ...
0
votes
1answer
54 views
Kendo AutoComplete Not Displaying
I have a custom editor that I use with autocomplete. The web service is getting called and returning the data. However, nothing is diaplying in the editor. I put a breakpoint in schema.parse() but ...
0
votes
0answers
51 views
Assign unique id to newly addd item in kendo grid
My datsource configuration
var itemcodedataSource = new kendo.data.DataSource({
dataType: "json",
transport: {
read: {
url ...
0
votes
1answer
38 views
Kendo AutoComplete
I want to use kendo AutoComplete in a kendoGrid for inline editing. When user inputs anything I'd use it to call a RESTful web service to return a list of products with names that start with the input ...
0
votes
1answer
131 views
How to use Kendo UI Grid with ToDataSourceResult(), IQueryable<T>, ViewModel and AutoMapper?
What is the best approach to load/filter/order a kendo grid with the following classes:
Domain:
public class Car
{
public virtual int Id { get; set; }
public virtual string Name { get; set; ...
-1
votes
0answers
56 views
how to filter blank values in KendoUI grid [closed]
I have a Kendo grid & need to support column filters for blank/empty values.
I found this link http://www.kendoui.com/forums/ui/grid/custom-grid-filter-type-to-show-only-blank-non-blanks.aspx ...
0
votes
0answers
97 views
Kendo grid read not sending request
I am using kendo grid with the followng configuration
var itemcodedataSource = new kendo.data.DataSource({
dataType: "json",
transport: {
read: ...
0
votes
0answers
40 views
Kendo Grid equivalent of onEditComplete
Is there an event equivalent to onEditComplete for Kendo Grid where the event fires only after the content of the cell has been edited?
Documentation mentions "edit" event, but this fires as soon as ...
0
votes
0answers
26 views
Value of Hidden field inside Editor Control for KendoUI Grid
I am trying to use a particular column of the Grid to behave like a hidden field and would be intialized with the value of another column, for each row. The reason to do so is, one of the field can be ...
0
votes
1answer
36 views
Dynamically add kendo grid inside panel of kendo panelbar in JSP
I am using Kendo UI in my Java JSP application.
I am able to load the panel bar dynamically but now i want to insert the grid into one of the panels when user clicks that panel. I got the ...


