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
4
votes
1 answer

Add New Record button not working in kendo hierarchical grid

I'm trying to add new row to the detail grid of the kendo hierarchical grid, but the Add new record button not working. However if I omit the filter option in detail grid definition, then the button works, but with filtering off, I can't separate…
Badhon Jain
  • 938
  • 6
  • 20
  • 38
4
votes
0 answers

Styling a "PART_" in WPF

I want to style part of a telerik RadDGridView, the part in question is exposed as a template part called 'PART_AddNewRow'. Is it possible to apply a style to this part, I don't want to replace the control template just style what is there?
AwkwardCoder
  • 24,893
  • 27
  • 82
  • 152
4
votes
1 answer

How to send IEnumerable list from Ajax to Controller

I have a web application in MVC3 and i'm using Telerik Grid Batch Editing. Batch Editing have save changes button which returns UPDATED COLUMNS to controller IEnumerable list like [GridAction] public ActionResult…
saulyasar
  • 797
  • 1
  • 17
  • 45
4
votes
1 answer

How to carry master and child data from a kendo hierarchical grid?

I'm trying to carry both master & child data to the server from a kendo heirarchical grid. Here is my Grid: //To Define Data Source for Yearly Holiday Kendo Grid var YearlyHolidayDataSource = new kendo.data.DataSource({ schema:…
Badhon Jain
  • 938
  • 6
  • 20
  • 38
4
votes
2 answers

RadGridView detect CellClick event button

How can I detect which mouse button was pressed in event CellClick, or how can I detect which cell was pressed in event MouseClick.
borkowij
  • 182
  • 1
  • 3
  • 11
4
votes
6 answers

Telerik gridview : How to refresh grid view after Database change

I'm using radgridview in C# winform application to show data from database. I'm also altering database through ADO.Net. The problem is after I change the database, for example by deleting a row or adding a new row, changes do not appear in…
Rsh
  • 7,214
  • 5
  • 36
  • 45
4
votes
2 answers

Is this Telerik.Web.UI.dll free for use?

I want to use Telerik.Web.UI.dll but I don't know whether it is free or it needs to pay and were can I download it. Thank you.
user2036892
  • 47
  • 1
  • 2
  • 5
4
votes
2 answers

RadGridView change text color

I have a simple RadGridView in which I want to change the color of the text for a specific row (= 3 cells). Unfortunately, this code doesn't work: //add new row to the grid EventLogGrid.Items.Add(new EventLogRow(eventType, occured, msg)); //change…
Mike
  • 1,992
  • 4
  • 31
  • 42
4
votes
1 answer

How to toggle column visibility programmatically (through data binding) of ASP.NET AJAX Telerik component?

I have couple checkboxes on the form and RadGrid component. I'm seeing that there is Visible property of that component but I need to bind it to the check box that will toggle column's visibility. How can I do that?
Roman Kagan
  • 10,440
  • 26
  • 86
  • 126
4
votes
2 answers

Telerik mvc grid tab order issue

I am working in an MVC 3.0 application. In my project I used Telerk mvc grid for data listing. I made grid edit model as "InCell" and provided key board navigation in my question answer area. Each question will have 2 answer options such as "Facts"…
4
votes
1 answer

Telerik MVC grid with List of ExpandoObject

I am trying using Telerik MVC with a collection of dynamics ExpandoObjects. The Controller is: [GridAction] public ActionResult TestDiario() { var result = new List(); dynamic diarioModel = new ExpandoObject(); var…
user1822331
  • 49
  • 1
  • 4
4
votes
1 answer

Clearing the Filter Sorting of Telerik RadGrid on PostBack

How can we remove the Sorting of data previously done on a Telerik RadGrid on Post Back.
Liya S
  • 439
  • 4
  • 13
4
votes
4 answers

Telerik grid ClientTemplate

I'm trying to use C# to apply a bit of logic when displaying a DateTime in a telerik grid in my MVC application, but am having some trouble getting it working. My first problem is that I don't understand exactly how the ClientTemplate call works. I…
birdus
  • 7,062
  • 17
  • 59
  • 89
4
votes
2 answers

Telerik MVC Grid Ajax with manually binding

I have a Telerik MVC Grid using ajax to get data and I want to control when it will be loaded. Here is the code in my view: @(Html.Telerik().Grid() …
Samuel
  • 12,073
  • 5
  • 49
  • 71
4
votes
1 answer

Why data is not passed to controller in JQuery

I have page in MVC2 that contain a grid and image button. When image button is clicked, the currentPage, orderBy and filter will be posted to a controller in JQuery. The code is,