Questions tagged [radgridview]

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

450 questions
2
votes
1 answer

Change group title in radgridview

When i group be default the radgridview by Telerik The name of the column and the value of the cell are put it like the title of the Group {Column Title}: {Cell Value} But I need to change that to have just the {Cell Value} Is any way to do that…
eli.rodriguez
  • 480
  • 2
  • 9
  • 22
2
votes
0 answers

radgrid insert item and edit items from clientside in 2011.1.519.35

Hi i am using telerik 2011.1.519.35 version how can i get radgrid insert item and edit items from clientside... i've used following methods... but those are not working in version 2011.1.519.35 function getTableViewInsertItem() { var…
Venki Chikkanti
  • 103
  • 2
  • 11
2
votes
1 answer

How to override cell colors by cellFormatting Telerik

I'm on Telerik, & i'm trying to format a col values. The column index number 12 is already given a color(it works) and then I want to look for a particular value, if it's present then change the cell color. If the cell value is 4354 then change the…
linguini
  • 1,939
  • 5
  • 49
  • 79
2
votes
1 answer

How to change formatting on specific cells in RadGridView

So I have a dynamic RadGridView. This means that I add Columns programmatically to the control. basically like this: for (int i = 0; i < length; i++) { Binding b = new Binding(string.Format("Collection[{0}].ValueIWant", i)); …
Ingó Vals
  • 4,788
  • 14
  • 65
  • 113
2
votes
3 answers

Select cell by right mouse click

How to select cell in RadGridView by right mouse click? The following code doesn't work: private void RadGridView_PreviewMouseDown(object sender, MouseButtonEventArgs e) { // ... getting grid and cell if (e.RightButton ==…
Rover
  • 2,203
  • 3
  • 24
  • 44
2
votes
1 answer

RadGridView: Can't Access GridViewHeaderCell

Need some help about this one. I have a Telerik:RadGridView control and define the GridViewHeaderCell style of it in the resources
lincx
  • 399
  • 2
  • 5
  • 15
2
votes
0 answers

Best way to bind multiple DomainDataSources to a RadGridView selection change

I have a master grid, used for finding items, then a set of 3 grids below it to shown parallel sets of related details for the selected row using simple Name Value pairs. It looks like this: When I breakpoint the Domain Service the parameters from…
iCollect.it Ltd
  • 92,391
  • 25
  • 181
  • 202
2
votes
1 answer

wpf RadGridView / RadContextMenu binding issue

I have a RadGridView with a different RadContextMenu's shown, depending on the cell clicked. I have a list of RadMenuItems as an Observable collection. When i set the following code on the StackPanel that the Grid is located in (parent container) it…
KRichardson
  • 990
  • 7
  • 12
1
vote
1 answer

Allow focus change in RadGridView when a cell has an error

I am using the INotifyDataError interface to add errors to an object. If the object is displayed in a RadGridView, the user is prevented from changing the focus from current cell if that property has an error. I would like to allow this. For…
cadrell0
  • 17,109
  • 5
  • 51
  • 69
1
vote
1 answer

Accessing Telerik RadGrid edit mode from javascript

I invoke one function in javascript. When I call this function rad grid row is already in edit mode. In that function I get reference to RadGrid: var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView(); In edit mode I have edit…
1110
  • 7,829
  • 55
  • 176
  • 334
1
vote
1 answer

How to display two table rows on single click in Telerik RadGrid

I have one class which contains two more classes like hierarchy. When I'm displaying in Telerik RadGrid it should display like, when we click on first class row then it should display two rows of related classes as in below figure. Could help me to…
Charan Raju C R
  • 758
  • 5
  • 21
  • 43
1
vote
0 answers

Custom telerik gridview for winforms doesn't bind the data

Custom control for telerik grid view in winforms In my Windows forms control library: for MyGrid.cs (where MyGrid.cs is a component class) public MyGrid : Telerik.WinControls.UI.RadGridView I build and i have MyGrid.dll & i have added that in my…
Sharpeye500
  • 8,775
  • 25
  • 95
  • 143
1
vote
2 answers

RadGridView, Changing Colour of Filter icon

I am applying a template and styles to a telerik RadGridView to adjust the colour of the filter icon when it is selected. My problem is that I apply a style like this,
peter
  • 13,009
  • 22
  • 82
  • 142
1
vote
1 answer

Telerik's RadGridView + WCF Data Services + Entity Framework = Terrible performance

We have a simple LOB application that: pulls data from EF serves data across the wire with WCF Data Services renders that data on Telerik's RadGridView This works really well in the default scenario as users are able to filter data by using the…
1
vote
1 answer

How to allow decimal values in Telerik Silverlight GridViewDataColumn filter dialog?

I've got a data column defined within a RadGridView that uses a currency value. Here's the definition:
Scott Marlowe
  • 7,915
  • 10
  • 45
  • 51