Questions tagged [radgridview]

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

450 questions
3
votes
1 answer

How do I hide a cell in a RadGridView depending on the current object's bool property?

I currently have a list of objects in which my RadGridView's ItemsSource is set to. When the property "DoNotContact" of the object in the list has been set to True, I want to hide the information in the cell that contains a Phone number within my…
justin peterson
  • 367
  • 1
  • 6
  • 17
3
votes
2 answers

RadGridView in a ScrollViewer stretches off the screen

I have an app that I am styling and it's default size is 1440x900. I want the user to be able to scroll up and down if the app is resized smaller than that. I tried wrapping a ScrollView control around the main grid control of the app and it seemed…
Mikeyboi77
  • 31
  • 1
  • 3
2
votes
1 answer

Save selected items when using caliburn.micro /Telerik RadGridView /Silverlight

I am using Caliburn micro(1.3)/MVVM and Silverlight. When I update the itemsource RadGridView, I lose the selected items. I found a blog about implementing a behavior to save the selected items when you are implementing MVVM. I can get the selected…
MrTouya
  • 656
  • 6
  • 19
2
votes
4 answers

How to give a color to the Column Header in Telerik RadGrid

I have created a telerik RadGrid in asp .net. My requirement is to give my own color to Column header. How can we achieve this...? Below is the code structure I'm using.
Charan Raju C R
  • 758
  • 5
  • 21
  • 43
2
votes
2 answers

Enable inserting new rows but disable editing of existing ones in RadGridView

I need to allow users to add new entries to GridView but at the same to disallow editing of existing entries. How can I achieve this?
DixonD
  • 6,557
  • 5
  • 31
  • 52
2
votes
1 answer

How to call a command of a rad grid

i have a rad grid with the following code
user710502
  • 11,181
  • 29
  • 106
  • 161
2
votes
1 answer

Telerik RADGrid and sorting

I'm using the RADGridView for WPF to display some data. It is pulled dynamically from DB so I don't know column names or the type of data contained in each cell. I want to let the user sort the data on each column when it double-clicks on a column…
Carlos Blanco
  • 8,592
  • 17
  • 71
  • 101
2
votes
0 answers

Validation in a cell of Gridview

I am working with RadGridView (WPF) and I need to validate cell compared to other values in binding collection. I have a object : public class MyObject { public DateTime DateBegin { get; set;} public int Value { get; set;} } And if I add a…
rad
  • 1,857
  • 1
  • 20
  • 30
2
votes
2 answers

How to expose commands for a Hyperlink button in Silverlight Telerik Radgrid

To give you background, i am using Silverlight + MVVM and PRISM. I have some Master data to show in grid and have the first column as hyperlink to the detail data. I am trying to expose some command for a Hyperlink button, but it doesnt seem to work…
whihathac
  • 1,741
  • 2
  • 22
  • 38
2
votes
1 answer

Why is my invoke adding 10 seconds onto grid loading time?

I've attempted to add a method invoker to stop my error log being spammed with "Bounds cannot be changed while locked." This has solved my issue, however...It has added an extra 10 seconds onto the loading time of my RadGridView. I looked at…
Oliver
  • 161
  • 2
  • 9
2
votes
2 answers

Adding a new item to collection doesn't respect existing sort when displayed in Telerik RadGridView in Silverlight

I have a RadGridView control on my form bound to a collection in my ViewModel. When I add a new item to my collection, it does show the item in the grid, but it's always placed at the end and not respecting the current sort. Does anybody know how…
Mike Cole
  • 14,474
  • 28
  • 114
  • 194
2
votes
1 answer

RadGridView Button Column Content Binding to DataMember

I have a telerik rad grid view and assigned buttons to one of the columns using DataTemplate.
2
votes
2 answers

Hierarchical data using Custom objects (telerik RadGridView)

Suppose i have class Person { public int Id {get;set;} public string Name {get;set;} public List All {get;set;} public Person() { } public List GetAll() { //fills the list with person and…
Edward
  • 131
  • 2
  • 11
2
votes
2 answers

Name of control in routed event

Isn't there a way to tell what control fired a routed event? I have a SelectionChangedEvent for use by a combobox on a radgridview. I want the coding in that event to handle only that combobox and no others. I tried using e.OriginalSource.Name,…
EManning
  • 81
  • 1
  • 9
2
votes
1 answer

Increase column widths as Grid resizes

i have a RadGrid, which doesnt have any fixed width or height, and whose horizontal and vertical alignment is set to stretch. it has 5 columns, out of which 2 columns have fixed widths and the others are set to auto. When the window is resized,…
Sangeetha
  • 485
  • 2
  • 9
  • 24
1
2
3
29 30