RadGridView is grid control with powerful features created by Telerik. There are versions for Silverlight, WPF and WinForms.
Questions tagged [radgridview]
450 questions
1
vote
0 answers
Value does not fall within the expected range error binding in RadGridView
I am following the example posted by Telerik on how to show/hide columns in their RadGridView control, as shown here:

Todd Davis
- 5,855
- 10
- 53
- 89
1
vote
0 answers
Changing data source of a GridViewComboBox column Row-Wise
I'm working on a windows form application there I am using Rad Grid View. I'm stuck at a point, could any one of you please help me through this. Below is my scenario.
I have a grid which has 3 columns:
Role - GridViewComboBox column (it can be…

Tilak Dewangan
- 351
- 1
- 2
- 19
1
vote
1 answer
Button simulating keyboard "Shift" key pressed
I Have a WPF window that have a RadGridView and a Button,
My requirement is, when you click on the button and
select a row in the grid, it should work similar to
pressing on the shift key and clicking on a gridview row.
(To select multiple…

user501579
- 251
- 1
- 8
- 14
1
vote
1 answer
Selecting value from a row - RadGridView C#
I'm trying to get the value of a cell within a selected Row in a RadGridView, I know how to do this for a DataGridView but can't convert the code.
if (rgv_customers.SelectedCells.Count > 0)
{
int selectedrowindex =…

benjiiiii
- 478
- 10
- 33
1
vote
3 answers
WPF GridView Not Updating On Observable Collection Change
I have a Telerik RadGridView Bound to ObservableCollection of defined type.. On Updating the value of a particular property in that type, the corresponding Observable collection is getting updated but not the RadGridView..
Below is the XAML:…

Arihant
- 367
- 1
- 6
- 22
1
vote
1 answer
Conditional formatting on a radgridview to remove '-' - C#
I have a rad grid view which contains data relating to stock movement. The values in a column named will all be pulled through as negative. I want to add formatting so that the negative is removed from the number.
I think conditional formatting is…

benjiiiii
- 478
- 10
- 33
1
vote
0 answers
Enter Key = Tab Key... Not Working
I've researched all this morning how to modify the behavior of a RadGridView (in WPF) for moving focus from one control to the next, just like the Tab key does... and like many other examples I've seen, I want to do the same thing: just make the…

blcamp
- 119
- 15
1
vote
1 answer
"Enter" key not leaving cell in RadGridView
All around my project I'm facing similar problem, which is "Enter" key, creating new line in cell, instead of move to next line.
My current telerik version is 2018.1.122.45, and default, expected behavior is to leave cell, after pressing "Enter"…

Vanghern
- 202
- 1
- 12
1
vote
1 answer
WPF RadGridView - If Enter Key (But Value Not Changed) Act Like Escape Key
When editing a cell in a RadGridView, the normal behavior for the escape key is to leave edit mode but retain focus on the same cell; if the enter key is pressed, to commit the edit and advance focus to the next editable cell.
My boss would like for…

blcamp
- 119
- 15
1
vote
0 answers
Apply Css Class To Rad Grid From C# Code Behind
I have a css class set-up like so:
.cellOneCellPadding {
padding-left: 9pt !important;
}
Now I am attempting to add the padding to a RadGrid from the C# code behind like this
foreach (GridDataItem row in r.MasterTableView.Items)
{
…

Smith Stanley
- 461
- 1
- 8
- 25
1
vote
0 answers
An issue with CheckAll using EventTrigger on RadGridView
I am using a RadGridView to display data to users. I had added a Check All checkbox control to enable uses to select all records. For this matter, I have used EventTrigger and it's working just fine. but recently I have noticed that CheckAll would…

Abdulkarim Kanaan
- 1,703
- 4
- 20
- 32
1
vote
3 answers
Disable Excel-Like filtering for Some columns - Telerik C# Winforms
By enabling Excel-Like filtering for RadGridView all of the columns will have a filter button. I need to disable Excel-Like filtering for some specific columns and hiding the excel filtering button for that column. Is this possible?

Inside Man
- 4,194
- 12
- 59
- 119
1
vote
0 answers
Saving RadGridView Data Back to Database WPF?
I am using Telerik's Radgridview. I currently have it populated with data from a test database and I do this by using a linq query when the window loads. I have two extra empty columns for users to enter in data, and what I want is to have any…

GamerTalks
- 63
- 9
1
vote
1 answer
Cannot Edit Cells in RadGridView Telerik WPF
I am currently using Telerik's RadGridView to display data from a database. The data that I want does load into the gridview and I also added three extra columns which are for users to type in additional information.
The problem I'm having is that…

GamerTalks
- 63
- 9
1
vote
2 answers
PostSharp get_Property error
I am using PostSharp and RadGridView from Telerik. Some columns have custom data using a DataTypeConverter, which I am using to load a value from a property named Name of type AdvisableDictionary.
The grid has the filter button and…

Tim
- 152
- 10