RadGrid is an ASP.NET based grid control by Telerik that provides many advanced functions.
Questions tagged [radgrid]
1135 questions
4
votes
3 answers
Retrieve value from GridTemplateColumn in server side (Telerik RadGrid)
I have the following code in my aspx page (simplified):
…

Kira
- 608
- 3
- 10
- 22
4
votes
3 answers
Radgrid fill container height
I have some nested divs, one of which contains a Radgrid control which needs to fill its container.
Tried 100% height/width. Didn't work.
Tried absolute positioning. Didn't work.
Followed advice from Telerik here. Nope.
Followed this post. …

Sean Rich
- 2,338
- 2
- 20
- 15
4
votes
2 answers
telerik radGrid - persist client state on sort/paging/filter
Even in this ajax example
which I really like the look of, when ever the top level grid is sorted the "state" of what you were doing "disappears"
For example,
Open the first person's row (Nancy Davolio) so you can see the Sales grid
Sort by Order…

kralco626
- 8,456
- 38
- 112
- 169
4
votes
3 answers
Binding Telerik RadGRID to a list object
I have a simple use for RadGrid that involves binding it to a list of strings
i.e. using: list
The bind works OK and the data displays in the grid. However, the header says "Item", and there are other aspects of the column I'd like to…

alchemical
- 13,559
- 23
- 83
- 110
4
votes
4 answers
Telerik RadGrid working examples
I'm looking for some examples of production websites that currently use the Telerik Rad Grid. I'd really like to see some real world scenarios in action, other than the Telerik RadGrid demo. Does anyone know of any websites that use it?
Marcus
4
votes
3 answers
4
votes
1 answer
Set row color of Telerik RadGrid
I am using a RadGrid for displaying the data from a database. I want to change the row color in the RadGrid to red if in the status column that row shows as "REJECTED". If the status is NULL then the row will remain displaying as the color white. I…

Ifwat Ibrahim
- 1,523
- 4
- 16
- 28
4
votes
1 answer
RadGrid Custom Filter
I'm trying to add a custom filter to my RadGrid. I have a column, vendNum, which I want to allow users to filter on multiple vendNums with a comma-separated list. Basically, I want the same functionality as an "in" statement in SQL (where vendNum…

Aaron
- 7,431
- 12
- 35
- 37
4
votes
1 answer
Finding Label in GridTableView (RadGrid)
I have a hierarchical Telerik RadGrid that sometimes contains child entries that are empty. For these, I want to overwrite the default text "No child records to display" with something user locale specific.
So I can do this:

Christofer Ohlsson
- 3,097
- 4
- 39
- 56
4
votes
1 answer
How do I set a "UniqueName" on a Kendo Grid like you can with a Telerik RadGrid?
I am working with on a task to migrate a dataset from a Telerik RadGrid to a Kendo Grid trying to set up sorting. I got the sorting working fine for most all the columns, however some of the columns have 'ambiguous' (same named) data-field names.…

Easton James Harvey
- 1,672
- 1
- 14
- 24
3
votes
0 answers
Change Datafield of Telerik RadGrid GridBoundColumn using C#
I have a RadGrid which is initialised in markup:

user559142
- 12,279
- 49
- 116
- 179
3
votes
1 answer
Add Header/Title to telerik Radgrid?
I have recently started working with telerik controls. I need to add a header above the radGrid like
Title: ABC Name: XYZ
Column1 Column2 Clolumn3 Column4
abc def ghi klm
Should I call any event…

user1208862
- 303
- 3
- 7
- 19
3
votes
1 answer
.net Radgrid with button in column only fires itemcommand on 2nd click
I'm having an issue where the button within a radgrid is not firing until second time.
I have a usercontrol with a radgrid on it and button within one of its column.
The usercontrol is placed on a page.
When clicking the button on radgrid nothing…

S.Nairstone
- 41
- 7
3
votes
1 answer
Change color of specific rows (TELERIK)
I have in my grid a GridTemplateColumn which display "INDEF" or "MA". When it's "INDEF", i would like my row to change of color:
this is my try:
protected void grid_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridDataItem)
{
…
user1173169
3
votes
2 answers
Change RadGrid columns headers
I tried to use the following code snippet in the PreRender event to change the HeaderText but it is not working.
Actually, I just noticed RadGrid1.columns was empty (with a break point) but my RadGrid has 3 columns:
protected void…
user1173169