Questions tagged [radgridview]

RadGridView is grid control with powerful features created by Telerik. There are versions for Silverlight, WPF and WinForms.

450 questions
1
vote
1 answer

Set Header Text of Hierarchical Grid By Data Field - Telerik C# WinForms

I'm creating a Hierarchical grid using a template like this: GridViewTemplate template = new GridViewTemplate(); template.DataSource = query; GridViewTextBoxColumn txtcolumn = new GridViewTextBoxColumn(); txtcolumn.FieldName =…
Inside Man
  • 4,194
  • 12
  • 59
  • 119
1
vote
0 answers

How to hot-link style a Telerik RadGridView column?

How might might I style a Telerik RadGridView column in WPF to mimic hot-tracking? I'm looking for the column to normally appear like text but become underlined and change color when the mouse cursor hovers over the cell.
NTDLS
  • 4,757
  • 4
  • 44
  • 70
1
vote
1 answer

Access row values of RadGridView in C#

I could be going about this the wrong way, but I am not sure. I have a search bar that a user can enter an address. Then the request is sent to Google's API and set of addresses corresponding to the address entered will be displayed in my…
developerME
  • 165
  • 1
  • 1
  • 7
1
vote
1 answer

Copy cell content to clipboard RadGridView WPF

I'm working in RadGridView where i need to copy the cell content. As part of the application functionality, i want the Grid SelectionUnit to always be of type Row. In addition to this, we also want to expose a mechanism where the user can select a…
A Coder
  • 3,039
  • 7
  • 58
  • 129
1
vote
1 answer

How to bind ListView inside a RadRibbonDropDownButton in a grid cell template?

I have a rad grid view that binds its itemssource to a list of 'Employee's. 'Employee' entity has a list of 'Roles' property. How do I bind this 'Roles' to a ListView as below. As an example: In second column, RadComboBox binds properly. In thrid…
Jeevan
  • 181
  • 1
  • 1
  • 8
1
vote
2 answers

hide specified columns for each parent row child rows when exporting to excel in telerik radgridview ui winform

I have a hierarchical telerik gridview in my winform app. In this gridview master template I have rows that each one has child rows and are null in some columns for all child rows of that parent row. I wrote a code that only let one parent row to be…
AAAE_N
  • 305
  • 4
  • 17
1
vote
1 answer

Telerik RadGridView self-referencing hierarchy filtering, winforms

What is the best practice for improving the performance of the data filtering in RadGridView with self-referencing hierarchy? It takes a lot of time for a big amount of data or it throws the StackOverflowException. I am using…
Tim
  • 152
  • 10
1
vote
2 answers

WPF How to bind List> Telerik RadGridView

I Have a RadGridView. The cell data comes in as MyObject with property ID & Value(Have to display Value). So, List of MyObject forms a row with list of MyObject and List of List of MyObject forms multiple rows. How do I bind the property 'Value' to…
Jeevan
  • 181
  • 1
  • 1
  • 8
1
vote
5 answers

Wrong DateTime format when copy/paste from RadGridView into Excel

I have a weird issue when copying rows from a Telerik's RadGridView into excel, the problem has to do with a DateTime column. The column in RadGridView has the correct format: 06/17/2016 02:30 PM But when the user copies the rows and pastes them…
ArturoAP
  • 432
  • 2
  • 13
1
vote
1 answer

telerik radgridview winforms order programmatically added columns

I set up a RadGridView and setup 2 Columns at Design Time and then added some GridViewComboBoxColumns programmatically. Now I want to reorder the columns, so that the first 2 columns are at the end. I tried: private void…
ckay
  • 66
  • 1
  • 12
1
vote
1 answer

C# - WPF - ColumnGroups Footer? (telerik)

Can anyone tell me whether it's possible to set a footer for each ColumnGroups of a RadGridView in WPF using code behind? I am able to do it on normal GridViewDataColumn by setting the Footer attribute to true but how about the ColumnGroups? Is this…
DriLLFreAK100
  • 1,575
  • 2
  • 16
  • 26
1
vote
1 answer

WPF: Change Binding in Template in Code Behind

My goal is to format the background color of a cell in a RadGridView in my WPF project to be that of the value in the underlying data. This data is dynamic however so I cannot use pre-defined templates There are RGB values in my underlying table…
miriyo
  • 103
  • 1
  • 11
1
vote
1 answer

telerik radtreeview display data from joined tables gives error These columns don't currently have unique values

I want to display data from two tables named "OpenCourses" and "OpenCoursesChapters". Opencourses table: OpenCoursesChapters table: I want to show coursename on radtreeview as parent node and chaptername as child node:
1
vote
0 answers

Cannot implicitly convert Telerik radgrid string to SystemDatetime

I have a Telerik radgrid textbox that stores date value. On update of the grid for the date I get an issue. Can anyone help me regarding this. I tried DateTime.TryParse ,Convert.Datatime... But nothing worked..
vana
  • 13
  • 1
  • 6
1
vote
0 answers

Telerik WPF QueryableCollectionView FilterDescriptors CollectionChanged event not firing

We have a standard WPF MVVM project. In one view model we have a QueryableCollectionView to which a radgridview is bound. When the user filters the grid we had expected the QueryableCollectionView.FilterDescriptors.CollectionChanged to be fired…
Chris
  • 318
  • 2
  • 5
  • 17