Questions tagged [telerik-grid]

telerik-grid refers to the issues in grid control available in various Telerik products. Telerik is a vendor of development, team productivity, and automated testing tools, as well as UI components and content management solutions for Microsoft .NET.

Resources:

Telerik Grid Extensions for ASP.NET MVC

Telerik Grid Extensions for ASP.NET

1640 questions
24
votes
3 answers

Kendo UI Grid post rendered or post databound event?

Is there a way to trigger an event after grid has been reloaded via ajax? i see the RequestEnd event. but that seems to happen when the request returned, but before the grid has been refreshed. i also see DataBound event. but that happens even…
Sonic Soul
  • 23,855
  • 37
  • 130
  • 196
16
votes
4 answers

Kendogrid destroy() and recreate the table on a new datasource, why do the old table columns still exist?

When invoking destroy() in KendoUI Grid and then recreate the table on a new DataSource: why do the old table columns still exist? The only element here that stays the say is the element. How do I tell the grid to read the new datasource columns (it…
afinegan
  • 175
  • 1
  • 1
  • 5
12
votes
2 answers

How to delegate telerik grid view common methods to be call from parent page from every child page?

I am using Telerik Gridview for displaying list of records and i have more than 10 pages on which i am using this gridview with this following common events code copy pasted(with some minor changes) on all this pages: protected void Page_Load(object…
I Love Stackoverflow
  • 6,738
  • 20
  • 97
  • 216
10
votes
3 answers

Get column index from column name in Kendo grid in Javascript

Is there a way we can find out the index of column in grid, if we know the column name in Kendo grid? e.g. EmployeeID| Name 123 | John I want to know the index of 'Name' field i.e. 1 in the grid. Any suggestions. Thanks. Sanjeev
sanjeev40084
  • 9,227
  • 18
  • 67
  • 99
10
votes
1 answer

use a control inside a column on a telerik grid

In asp.net mvc page im using a telerik grid that looks like this
@(Html.Kendo().Grid () .Name("grid") .Columns(columns => { columns.Bound(p => p.name).Filterable(ftb =>…
Thought
  • 5,326
  • 7
  • 33
  • 69
10
votes
3 answers

ModelState.AddModelError not showing any message

I am using telerik mvc grid. In my table I have unique key defined for a field. And in controller I am catching the error using try ... catch inside DbUpdateException. in catch block I want to handle the error and show error messsage in view. So…
hetal gala
  • 249
  • 2
  • 5
  • 18
9
votes
2 answers

How to create custom Delete/Destroy button/command in Kendo UI grid?

I am using Kendo UI grid with GridEditMode.InCell and I need to add a hyperlink for delete/destroy command in the grid column instead of the default "Delete" button. My current code looks like: c.Command(command => command.Destroy()).Width(90);
Vlad Bezden
  • 83,883
  • 25
  • 248
  • 179
8
votes
2 answers

How to set up Kendo UI mvc grid with checkbox control

I am using Kendo UI MVC grid. One of the properties of the model is bool, so I need to present it in grid as checkbox. By default Kendo UI present it as "true" and "false" values in the column. So you need to first time to click to get checkbox,…
Vlad Bezden
  • 83,883
  • 25
  • 248
  • 179
7
votes
2 answers

MVC Kendo Grid Custom Filter

Basically, I am looking for the MVC version of this demo: http://demos.telerik.com/kendo-ui/grid/filter-menu-customization Here is what I currently have: .Columns(columns => { columns.Bound(e => e.ID) .Hidden(); …
6
votes
2 answers

Multiline cell in Telerik grid (MVC3)

Using Telerik MVC3 grid, C#, .Net 2010; I have a grid in my razor view: @(Html.Telerik().Grid() .Name("Grid") .Columns(columns => { columns.Bound(o => o.Current.Name).Sortable(true).Filterable(false).Width(150); …
berdem
  • 462
  • 6
  • 19
6
votes
1 answer

RadGrid apply filter in codebehind

I'm trying to set a value in a filter for RadGrid on a dropdown select. GridColumn column = RadGrid1.MasterTableView.GetColumnSafe("versionId"); column.CurrentFilterFunction = GridKnownFunction.EqualTo; column.CurrentFilterValue =…
bfi
  • 289
  • 1
  • 7
  • 17
6
votes
3 answers

CS1525: Invalid expression term ')'

I'm working with Telerik Grid and I want to have a column using the Template to acces to other accion. The code I have in the Grid is : columnas.Template(o => { %> <%=Html.ActionLink("Texto","Prueba","Peticion", new { id= o.PeticionID })…
user564321
  • 61
  • 1
  • 2
  • 4
6
votes
3 answers

customize the filter option for a date colmn telerik grid

I am using telerik grid. I need to apply a filter for all the columns in my grid. Currenly I am customizing the filter option using the following code. By using the following code, I am removing the certain items for all the columns. But, for a date…
karthik k
  • 3,751
  • 15
  • 54
  • 68
6
votes
1 answer

WPF Grid With Validation Rule And Dependency Property

At the moment I have a grid and I'm trying to have a cell with validation rules. To validate it, I require the row's min and max value. Validation Class: public decimal Max { get; set; } public decimal Min { get; set; } public override…
Master
  • 2,038
  • 2
  • 27
  • 77
6
votes
1 answer

Format date in Kendo Template

I'm trying to format my DateTime object in my Kendo ListView Template but the suggested kendo.toString method doesn't seem to work for me. I've cut out a lot of code that doesn't relate to my problem to make it a little more simple to understand. I…
Quiver
  • 1,351
  • 6
  • 33
  • 56
1
2 3
99 100