Questions tagged [radgrid]

RadGrid is an ASP.NET based grid control by Telerik that provides many advanced functions.

1135 questions
3
votes
1 answer

RadGrid - Can I set a column datafield property to an enum description?

I am trying to bind a list of "Test" entities to the grid below. I am able to get the User column to read the Name property on Person class by specifying Person.Name for the datafield. However, when I try to get the Desc column to display the…
Airn5475
  • 2,452
  • 29
  • 51
3
votes
1 answer

Data in Telerik RadGrid not updated using LINQ-to-SQL (strange behavior)

I've found a strange behavior with Telerik RadGrid Datasource using Microsoft LINQ To Sql, which I'd like to know what reason causes it. Suppose I've a basic grid with OnNeedDataSource event:
To Zé
  • 83
  • 5
3
votes
2 answers

Telerik RadGrid Add/Edit Row Performance Issue

In a Telerik RadGrid, the user has the ability to add a row and edit an existing one. It appears that the grids actually force a postback to occur before the UI controls are rendered on the screen. I'm noticing a second to two seconds delay from…
RSolberg
  • 26,821
  • 23
  • 116
  • 160
3
votes
1 answer

Unable to update table from grid (Procedure or function spExcelGridTestUpdateTable has too many arguments specified)

On a "Save" command, I'm trying to update multiple edited rows on an Excel like grid, the columns of which look like this:
Karl
  • 189
  • 2
  • 3
  • 16
3
votes
1 answer

Manually updating RADGrid

I have this manually update code for my radgrid (RAD13). on upload it works but the thing is that only the first row in the grid saves it's update. I think that I should passe a value that will autoincrement to passe through rows protected void…
3
votes
2 answers

Telerik Radgrid : adding another footer row

I need to add multiple footer rows to my RadGrid instance ; for the moment, however, I just want to add second one. I have currently a single footer row and it's working and displaying perfectly, for the record. I found the following relevant…
SolarBear
  • 4,534
  • 4
  • 37
  • 53
3
votes
1 answer

Radgrid VS Gridview - SQL Query compare

I ran the same code for RadGrid and Gridview and result is the same for both. However, when I look at the SQL profiler I see that RadGrid calls the query for 3 times. On the other hand Gridview only calls it once. I am wondering that the reason is.…
Yekta
  • 51
  • 5
3
votes
1 answer

Hiding Horizontal Scroll bar in frozen columns

I have a RadGrid in which I want the first two columns fixed. I got that by using this code:
Azzy
  • 433
  • 2
  • 18
3
votes
2 answers

radajax updatedcontrols issue

i have two radgrids in my page. i have to change the visibility of a preview button based on the grids. the visibility of the button was handled ok without ajax. but, i need to do it with ajax. i added like this
3
votes
2 answers

How to delete autogenerated columns from Telerik RadGrid?

I dynamically change columns for a RadGrid, for some data sources I need AutoGenerateColumns for other I don't. But after data binding with AutoGenerateColumns=True I tried to clear Columns list and add new, but old autogenerated columns still…
IgorCh
  • 2,641
  • 5
  • 22
  • 29
3
votes
3 answers

Highlight the null value cells in RadGridView C#

I have a radGridView, the user inserts rows, i want to highlight the cell with null values. For example to make the back color of the cell Red. I have tried the below code, but it did not work... Inside a button for (int j = 0; j <…
fadd
  • 584
  • 4
  • 16
  • 41
3
votes
1 answer

Showing image in Radgrid using datatable

I have an image inside the image folder; I want to show that in a RadGrid using a data table which is populated from code behind How can I achieve this?
3
votes
2 answers

Remove the filter for a single RadGrid column

I am using a Telerik RadGrid and have custom filters set up on some of the columns. As part of that custom filter (which is just a textbox) I also have a button that when clicked I want to clear the filter value for that particular column only. I…
Chris B
  • 5,311
  • 11
  • 45
  • 57
3
votes
1 answer

getting the RadGrid checkbox column value in server

I have a RadGrid having a checkbox column, i have added the column as a ItemTemplate to make it editable in the regular mode.
ARV
  • 1,111
  • 5
  • 22
  • 46
3
votes
2 answers

How to control the width of radgrid

I have a RadGrid but it is spanning the width across the page, how can I control it and set a width and mae contents in the cells wrap if they need to?. I cant find anything that is helping me. I tried MasterTableView-TableLayout="fix" but then…
user710502
  • 11,181
  • 29
  • 106
  • 161