RadGrid is an ASP.NET based grid control by Telerik that provides many advanced functions.
Questions tagged [radgrid]
1135 questions
2
votes
1 answer
Take text From the filter textbox
I have enabled filtering in my RadGrid as follows
user4281510
2
votes
3 answers
Remove Edit, Update, and Cancel links from a RadGrid
I am trying to remove the links that are displayed in a Telerik RadGrid by default. Here is what the grid looks like before I try to remove the edit link:
I have found this snippet of code, it is used to remove the edit link:
if (!IsPostBack)
…

nate
- 1,418
- 5
- 34
- 73
2
votes
2 answers
Telerik RadGrid doesn't display on first Page_Load but does on postback
I have a page with a drop-down. Based on the selection in the drop-down, data gets loaded and populates a RadGrid. I am using a custom user control for the EditTemplate, so I can't use radGrid.DataBind(). Instead, I have to use…

Mark
- 200
- 1
- 3
- 8
2
votes
2 answers
Detecting Drop down with Selenium WebDriver
https://i.stack.imgur.com/L4WUv.jpg
Link to Grid
I'm trying to detect the different drop downs on this page (depicted by the filters by the text boxes). The problem i'm having is that it seems that the filters all have the same ids. I can get the…

user3779502
- 163
- 11
2
votes
1 answer
Javascript, how to utilize get_masterTableView from a dynamically create RadGrid inside of a placeholder
This one I thought would be simple. How do you utalize get_masterTableView() from a radgrid thats dynamically created. You cannot use var radGrid = $find('<%= MyGrid.ClientID %>') because the grid doesnt exist in the aspx page it's found in code…
user222427
2
votes
1 answer
Telerik radGrid Is there a way to not have edit form embedded in middle of grid?
I am trying out the RadGridControl. I was hoping to use the "Edit" column they have and build my own panel below the RadGrid for adding/updating data. Is there an easy way to do this?
I can't get the grid to stop handling my "Edit' click and…

Gary
- 185
- 2
- 10
2
votes
2 answers
Get selected items in a RadGrid client-side
I want to get the values of the selected checkbox in a RadGrid.
I have a radgrid, textbox and a button as follows:
this._RadAjaxPanel.Controls.Add(RadGrid1);
this._RadAjaxPanel.Controls.Add(TextBox1);
this._RadAjaxPanel.Controls.Add(Buton1);
The…

R B
- 413
- 3
- 8
- 19
2
votes
1 answer
Hierarchical Rad Grid Troubles
I'm not sure if anyone else has had trouble with this. I'm trying to use a RAD Grid to create a 4-level hierarchy to display to the user. I followed the tutorial on this website, and couldn't get it to work. I know that there is data within the…

Aaron
- 7,431
- 12
- 35
- 37
2
votes
1 answer
Rad Grid Pager With Web Api
I try using Rad Grid with web Api as data source

Bakri
- 597
- 10
- 22
2
votes
1 answer
Binding navigation property to RadGrid while using EntityDataSource control
I'm new to Entity Framework and I got stuck in an issue while trying to bind a navigation property (foreign key reference) to a dropdownlist. I have Telerik RadGrid control which gets the data using a EntityDataSource control. Here is the model…

KrishHari
- 449
- 5
- 10
2
votes
1 answer
RadGrid export to Excel format issue
In code behind, the following code will export the RadGrid data to an Excel file, but all the text has been wrapped.
RadGrid1.ExportSettings.ExportOnlyData = True
RadGrid1.ExportSettings.IgnorePaging =…

Joe Yan
- 2,025
- 8
- 43
- 62
2
votes
2 answers
error message "String was not recognized as a valid Boolean" in aspx page
I have a SQL stored proc where I am creating a column ("Certified") dynamically based on two other columns. The value from this column is a '0' or '1'. The SQL stored proc query is:
, CASE WHEN
(StartMiles < EndMiles)
AND (StartTime <…

Csharp
- 2,916
- 16
- 50
- 77
2
votes
1 answer
Send binary file and update a grid with ajax
I need to handle a user's button click action by sending him a binary file stored in a database and also updating the database and the changes reflect in RadGrid using ajax.
When executing the actions, sending the file and updating the grid,…

Eduardo
- 45
- 1
- 6
2
votes
2 answers
How do you dynamically add columns to a RadGrid?
I have a RadGrid with an unknown number of columns I would like to create. Actually I know the first column, which has a DataField of PermissionName. I have a CSLA data source which returns a list of PermissionInfo objects, each of which contains…

Will
- 421
- 2
- 8
- 23
2
votes
1 answer
Column validation in RadGrid when EditMode=InPlace
I have a very annoying problem with validating a column in a RadGrid. In edit mode(IN PLACE) I want a column to be validated when pressing image button for submit.
The problem is that my GridTextBoxColumnEditor is moved upwards just to make space…

Anders
- 21
- 4