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
2 answers

How to define my own filter while working with Telerik RadGridView control?

I'm working on a C# application, where I'm trying to create my own filtering mechanism for filtering a Telerik RadGridView control. My RadGridView control looks as follows (in the xaml file, I've left some open lines for showing the part where I…
Dominique
  • 16,450
  • 15
  • 56
  • 112
1
vote
1 answer

TypeAccessException when sorting using RIA Services and Telerik RadGridView

I'm using RadGrid in a SL app using RIA services / MVVM In my Viewmodel I have an IEnumerable collection that works fine when simply exposing the collection: public IEnumerable OrderList { get { return…
user918064
  • 145
  • 3
  • 12
1
vote
1 answer

Problem while filling a RadGridView with a BindingList of objects

I need some help on a little problem; I want to use a component which inherits from a RadGridView from Telerik. I want to fill it with a BindingList of RowService, a class I create, the code looks like this : public class RowService { …
lvbartow
  • 41
  • 6
1
vote
0 answers

telerik gridview export to pdf in win forms

telerik gridview export to pdf in win forms. hi i want to get pdfexport from telerik grid and i search on the web and find answer on Telerik gridview export images not working winforms private void RunExportToPDF(string fileName, ref bool…
1
vote
1 answer

Telerik RadGrid : Raise an event in Form when the Form Window is Maximized

I have a RadgridView along with a button in a Form Window.When the button is clicked , it shows some hidden rows in RadGridView. I want the hidden rows to be showed when the Form window is maximized. I am trying something like this in Form_Activated…
schwifty
  • 145
  • 1
  • 12
1
vote
2 answers

Adding scrollbar to Telerik GridViewDataControl for expandable grid item

I have a Telerik:RadGridView that has items in it, some of which are expandable. The decision to make the row expandable is done in the RowLoaded event by setting the IsExpandable flag based on the type of object in the row. This works great. To…
dna86
  • 407
  • 2
  • 7
  • 18
1
vote
1 answer

Telerik RadGridView row in edit mode is not committed on lost focus

I'm using Telerik's RadGridView in an MVVM app. In this particular gridview users can add rows and edit them. There's also a separate save button to save the items in the RadGridView. The problem that I'm experiencing is that when the user inserts a…
kristofvdj88
  • 855
  • 8
  • 12
1
vote
0 answers

Select rows in the bottom of the Grid and problem is moved to the top

My problem is when I select many rows in radGridView (Telerik) and especially when I select rows in the bottom of the RadGridView. the scroll move to the top. I need to fix the scroll position to be in the same position of the last selected…
user2586714
  • 149
  • 1
  • 1
  • 7
1
vote
3 answers

Binding MVVM with (only) some columns autogenerated from a collection

I have a collection of objects which I want to bind to a RadGridView (from the toolkit telerik). The class of the objects is looking like that (minimum code needed to understand) where I have 1 property and 1 array of values which : public class…
Philippe
  • 28,207
  • 6
  • 54
  • 78
1
vote
3 answers

how to sort radgridview

i have a radgridview... i want to sort them in ascending/descending depending on the button that the user clicks. i also have a combobox that contains the column names in the radgridview which the user chooses to sort the data based on the column…
loraine96
  • 11
  • 1
  • 2
1
vote
1 answer

Telerik WinForm RadGridView Clear Filtering

Please take a look at this link : how-to-clear-radgrid-filters But this link is for asp.net, not WinForms. In WinForms there is no GridColumn or RadGrid1.MasterTableView. How can i clear filtering of telerik radgridview in winforms?
SilverLight
  • 19,668
  • 65
  • 192
  • 300
1
vote
1 answer

Telerik RadGridView.ExportToXlsx - format cells as number

I need the Excel export of a RadGridView to have a cell format of "Number" in Excel, with a format style of "{0:#,##0.00}". I achieved that using .Export, handling the ElementExporting event: grid.ElementExporting +=…
George Dando
  • 444
  • 2
  • 11
1
vote
1 answer

Silverlight RadGridView refresh

I'm deleting a user from my GridView, but when I delete it. I first need to refresh my page to see the result. Anybody any idea? This is where I try to rebind the datasource if (e.PropertyName == "deleted") { …
Evert
  • 69
  • 1
  • 13
1
vote
1 answer

Expand one row at a time in RadGridView Telerik C# WPF

I have a telerik RadGridView with a HierarchyChildTemplate to show a child grid when expanded. Now I would like to have only one item expanded at the same time. How should this be done? I can find options for WinForms but not for use in WPF. I am…
nldev
  • 299
  • 3
  • 15
1
vote
2 answers

WPF Databinding issue

I'm using a RadGridView (Telerik). I'm trying to make a column editable only for certain rows, but what I'm trying doesn't seem to be working and I'm not sure how to do it. My grid is this:
Pete
  • 6,585
  • 5
  • 43
  • 69