Tagged Questions
0
votes
0answers
44 views
Kendo Ui Grid Edit Popup Window validation - ASP.net MVC validation Summery
To my understanding ASP.net MVC validation Summery does not work in Kendo ui grid popup windows.
Is there a way I can achieve this, so that I can display validation errors on popup windows similarly ...
1
vote
1answer
20 views
Highlight the sorted column
I'm firing the databound event but I'm not sure what do do from there.
The links here lead to generic docs:
http://www.kendoui.com/forums/ui/grid/highlight-sorted-column.aspx
Does anyone have a ...
0
votes
2answers
253 views
Kendo UI grid - not populating with JSON data
I've been struggling trying to get a simple web service/test page working using the Kendo UI grid. My web service is returning a string of JSON data:
[{"ord_number":"116347 ...
0
votes
0answers
64 views
Kendo Grid multiple detailtemplates
I have a scenario where i have two expand collapse columns apart from my default detailtemplate column, i have to call/expand detailtemplate when i click the cell of these two column, I tried to find ...
0
votes
1answer
36 views
How to conditionally group or not group KendoUI grid based on Viewbag value - MVC4
I need to pass a column name or the value 'none' to my kendo grid to conditionally group it based on the value of a Viewbag element. When I pass the column name in it groups as expected. My issue is ...
1
vote
0answers
88 views
Kendo UI Grid - Won't display inherited columns
For all my model entities I inherit a base class but when I try to place one of the inherited fields on the grid it just does not show them.
My workaround is to create a wrapper property on the ...
1
vote
0answers
236 views
Kendo UI grid Create action passes null reference from WCF service
I am struggling calling a create action through a WCF service from a kendo ui grid.When the odataservice calls the business logic controller to write the record it passes a null reference....the ...
0
votes
1answer
228 views
How to bind kendo grid to dynamic datatable
I am working with kendo+razor and i want to create a kendo grid that does not have any specific data model (in my case i have to show results of a SQL query, entered by user, so the result can have ...
0
votes
1answer
28 views
How to filter data when calculate the average?
I use this:
.DataSource(dataSource = > dataSource.Ajax()
.Aggregates(aggregates = > {
aggregates.Add(p = > p.UnitsInStock).Min().Max().Count();
aggregates.Add(p = > ...
0
votes
3answers
175 views
Kendo grid cancel button loses new value
I use a grid with a custom editor. I replace common input with a textarea inside colum.
Usecase:
Chack current value of textarea as "test 0"
Press edit button of a grid (of it's row)
Add new value ...
1
vote
0answers
362 views
Kendo Grid Column bound Dropdown Row wise binding
I am facing one issue on kendo grid.
I have Kendo grid in that i have one dropdown which is loading on the basis of ViewData["abc"] using editor template and also having 2 fields such as Arrival Date ...
0
votes
0answers
263 views
Kendo Aggregate Grid - Sum not working in different column header and footer
@(Html.Kendo().Grid(Model)
.Name("grid-report")
.Events(e => {
e.DataBound("NumberFormat");
e.DataBound("ShowTotal");
})
.Columns(columns =>
{
...
0
votes
1answer
791 views
Kendo UI Grid Row Template
I had a problem on how to apply row Template data binding into it. I not sure what is the syntax to do so. I am using server binding mode. Below is my code
...
0
votes
1answer
350 views
Binding JSON to kendo grid JavaScript
Help me fix this code that was runing perfect two days ago. I don't have idea what i've chanched, but now, the grid is just empty, can you get me some help? Please.
$("#grid").kendoGrid({
...
0
votes
0answers
71 views
Kendo UI grid selectable option in IE7
I've created a grid using Kendo UI.
My goal is to not show any highlighting when I hover (or mouse-over) each line in the grid.
So far this is working for me in IE8, IE9, Firefox, but not IE7.
...
0
votes
1answer
556 views
How to get selected row data of kendo detail grid
I am able to get the selected row in kendo grid ( master grid), But I am unable to get the selected row data in detail grid. Please provide me a code sample.
Thanks,
abhi
0
votes
3answers
66 views
Retrieving the row count from an html table
How can I calculate a grid's row count? My grid has data, but this code returns 0:
alert($('#Grid').data("kendoGrid").tbody.find('>tr.k-master-row').length);
0
votes
0answers
77 views
KendoUI: Dropdown on Grid Editor using MVVM
I've created a KendoUI grid that I use for CRUD operations, they all work fine using the MVVM framework. I wanted to enchance this by introducing Dropdown Lists to the editor (add/edit). I am using ...
0
votes
1answer
52 views
Javascript - Dynamic number of rows giving an error
I have previously posted a question about this code to generate a kendo grid dynamically.
The current problem I have now, even when I hardcode the number of columns like so:
var numberOfRows = 2;
...
1
vote
1answer
104 views
Can't remove item of Kendo web grid with knockout
I've a Kendo web grid combined with knockout. The last column of the grid contains a button to remove the row. But the parameter of the removeItem method
this.removeItem = function (item) {
...
0
votes
1answer
111 views
Kendo Web Grid Edit Command and Local Data
The follwing code is an extended version of an example of a built in command in the Kendo documentation
<!DOCTYPE html5>
<html>
<head>
<title>Untitled Page</title>
...
0
votes
2answers
399 views
Kendo UI MVC Server Wrappers; Grid; DataSource; Model Definition - Missing Methods?
When defining a DataSource Model for a Kendo MVC Grid DataSource, I only have two methods to setup the model:
model.Field(p => p.ContractId).Editable(false);
model.Field(p => ...
0
votes
1answer
151 views
Does Kendo grid support scaffolding / auto generate columns
I am using MVC4 and I want to be able to bind my grid to a model and have it generate the columns at run time. I have done this before with the .asp version of the control and I am new to the Kendo UI ...
2
votes
1answer
167 views
KendoUI Grid serverpaging
I'm trying to populate a KendoUI grid with JSON data where the server returns the total number of rows along with the data, but I'm having some trouble getting serverPaging to work properly. I create ...
0
votes
0answers
64 views
KENDO UI GridAction Usage
I have telerik grid it has ajax request as follows.
.DataBinding(dataBinding =>
{
dataBinding.Ajax()
.Select("FilterDetailsForCbu", "Actual", new { buyerId = ...
0
votes
1answer
232 views
Kendo grid detailInit access to parent grid
I have master grid which contains child grid that contains another child grid. And I have custom command in 3rd child, when i clicked to, I want to extract some cells from master grid. How can I do ...
0
votes
1answer
37 views
KENDOUI give group header
As we can give common group header in normal telerik grid as shown in below example,
http://demos.telerik.com/aspnet-ajax/grid/examples/overview/defaultcs.aspx
Can we do same for KENDOUI - grid in ...
0
votes
2answers
389 views
Kendo Grid - How to stop or prevent Databound event
I have Kendo grid as empty. Then I add one row, entering values and call saveRow() method. This will call controller and returns message, based on message I want to clear added(newly) record. I have ...
1
vote
1answer
634 views
Change filter value dynamically for a kendo datasource?
I would like to be able to update the filter value dynamically through a function:
filter: [{
"field": "id_person",
"operator": "eq",
"value": GetIdPerson()
...
2
votes
2answers
262 views
Kendo Grid - its own Loading indicator
Kendo grid provides its own Loading indicator automatically when the grid is loaded, paging, sorting. It is working fine.
But I don't want this built-in loading indicator to be shown/hidden.
How ...
0
votes
1answer
142 views
Error Load JSON KendoUI Grid
Good Afternoon,
I'm doing the integration Kendo UI (JSP Version) in my application, but I'm having a problem with the integration of transport read on the grid.
The Grid could make the request ...
0
votes
0answers
400 views
Kendo Grid Custom Editor Dropdown is not accessible in Popup Mode
I am using the Kendo Grid where i need to display dropdownlist as one of the column in the grid to allow users to select State. Here the source of the State can be different for each record. The ...
0
votes
1answer
758 views
Creating Kendo UI Hierarchy Grid with no Master/Detail
I have an array of JSON objects being returned from a server that looks something like the following:
[{State: Finished, JobID: 1234, Owner: John}, {State: Finished, JobID: 5678, Owner: Joe}, {State: ...
0
votes
1answer
622 views
Setup a grid with Kendo UI using ASP.NET MVC
I'm starting developing in HTML and I'm trying to use the Kendo UI framework in ASP.NET MVC.
I started with this tutorial: Entity Framework 5.x – Database First Workflow
With this I was able to ...
0
votes
1answer
397 views
Kendo UI Grid Using In-Cell and Inline
I have searched endlessly for the answer of this and have a feeling this is not supported. But I want to double check before I give up.
I have a Kendo Grid where I want incell editing turned on if a ...
1
vote
2answers
221 views
How to scroll to last the item added in Kendo grid?
I have a Kendo grid that is always being updated by SignalR.
Currently my grid displays about 12 rows. Any rows added after that programmatically will not be visible as the scroll bar doesn't scroll ...
0
votes
1answer
228 views
Kendo grid grouping message does not change
Hello and thanks in advance for any suggestions.
I am using the grouping option in the Kendo UI and i wanted to change the default grouping message :Drag a column header and drop it here to ...
So i ...
1
vote
3answers
1k views
Kendo mvc grid enable create, disable edit
Is it possible to enable only inserting new records in kendo grid, but disable editing records?
Best I could do is onDataBound remove "Edit" buttons in javascript.
I tryed setting Editable(ed => ...
0
votes
1answer
174 views
kendo numerictextbox in clienttemplate - issue with dot in name
I am doing following in kendo grid:
columns.Bound(x => x.Item.Equity)
.Format("{0:f2}")
.Width(100)
.HeaderTemplate("Equity<br/>Meta")
...
1
vote
1answer
235 views
Disable/remove Kendo mvc validator
A simple question, or so I thought.
How to disable client side validation for kendo mvc grid?
I thought there would be a property: "Enabled", "validator" or such which I could set to false but I can't ...
0
votes
0answers
213 views
Kendo Grid hierarchy
I'm having some difficulties with data bounding to my child grid.
I need to bind data to my child grid basing on the selected parents element.
I know how to pass the id of selected element but I have ...
1
vote
1answer
386 views
Kendo UI Grid Disable Drag Row Selecting
Currently I have a Kendo Grid with multi selectable rows. My Problem is i cannot select text from any columns because of the Drag Row Selecting feature of Kendo. is there Any way to disable the Drag ...
0
votes
1answer
183 views
Kendo grid inside splitter next page
Here's my layout. I'm using a Kendo splitter control. The left pane contains a menu and the right is the main content. Some of the content pages contain kendo grids that can contain several pages ...
0
votes
2answers
753 views
ForeignKey column does not select value in Kendo-Grid
i have a grid with some columns where one of these columns is a foreignKey-Column.
I want to show all possible values for that column in a combobox. (ViewData["States"] is a IList where State has an ...
0
votes
0answers
710 views
Kendo UI Complete for ASP.NET MVC, cannot add a dropdownlist to kendo grid in popup mode using ForeignKey
I want a Unit's dropdownlist column in Kendo Grid (popup mode), Can some one please help me I am using the following code.
I have a ProductViewModel class in which I have a property UnitViewModel of ...
0
votes
0answers
289 views
Kendo UI grid filter autofocus
When using Kendo grids, opening the filter options will give the first operator focus. I understand this I useful when there is multiple operators but I only allow the contains operator so would like ...
0
votes
1answer
1k views
kendo ui mvc grid editortemplate issue
What I am trying to do :
I have a form with Kendo UI controls like DatePicker(s), Dropdownlist(s), NumericTextBox(s) on the first half of the page
Second half has a Kendo UI MVC Grid control
This ...
2
votes
1answer
305 views
Kendo UI grid - throw Error(kendo.format(“Cannot call method '{0}' of {1} before it is initialized”,t,r))
I have tabstrip with two tab. On each tab i have one grid with paging.
My configuration for grid is on the client side. When I fast switch beetween tab then I get exception from javascript:
"throw ...
1
vote
1answer
885 views
Kendo UI toolbar buttons
I am using a Kendo UI grid, which looks like this:
function refreshGrid()
{
$(".k-pager-refresh.k-link").click();
}
var editWindow;
var fields= ...
0
votes
1answer
115 views
How to select a row in kendogrid after filtering
I have a kendogrid. What I do is first filter it, which works fine.
After having it filtered, I want to select a specific row. I am sure I have the row in the result of the filter.
Example:
data = ...

