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

Telerik HyperLink Handler

How to add hyperlink handler handler so that I may redirect to any page on the internet? The hyperlinks are in the RadGridView. The value of link, like www.google.com, are coming from database. I'm using winform telerik.
Ali Hassan
  • 321
  • 2
  • 17
2
votes
2 answers

RADGridView Start with Column Sorted

How would I set a Grid Column to be sorted at startup? I cannot seem to find a property on the RadGridView to tell it that I want Column one sorted Descending at startup. The grid just comes up with no sorting.
cjibo
  • 4,487
  • 6
  • 27
  • 34
2
votes
0 answers

WPF: What's the right way to display very large data (out of memory) in a data grid control(RadGridView)

I'm trying to implement a sniffer tool (just like Wireshark). I plan to display the captured traffic into a data grid(eg. RadGridView) row by row. User can view all the rows by dragging a vertical scrollbar. And user can sort and filter the…
ricky
  • 2,058
  • 4
  • 23
  • 49
2
votes
2 answers

WPF - RadGridView loop through rows. Can't get all rows

I'm trying to iterate through my RadGridView rows, but when I have more than 20 or 30 items, the loop doesn't get all rows. For example: using this code in a radgridview with 5 items, I can get all of them and do whatever I want, but when my grid…
Evil Str
  • 132
  • 9
2
votes
0 answers

WPF Telerik RadGridView: databinding not working with datarow derived class

I am attempting to databind using a type derived from System.Data.DataRow which has a public property that returns calculated data which is not a column in my DataTable. I can sucessfully databind my GridViewDataColumn to a property(TestString) that…
2
votes
2 answers

Passing DataContext in Telerik RadGridView

I use c# .NET 4.5 and WPF RadControls from Telerik. On my MainWindow I have a RadTabControl and in my code behind I bind my MainViewModel like this: this.DataContext = new MainViewmodel(); The ItemSource of the RadTabControl is bound in XAML: …
2
votes
0 answers

RadGridView Focus

I am using a RadGridView with 8 GridViewDataColums that are empty on load .The first column displays 'Click here to add new item' i.e I am trying to enter new items.I need to implement accessibility for the RadGridView using narrator. My…
user2526236
  • 1,538
  • 2
  • 15
  • 29
2
votes
3 answers

change typeof(DateTime) to only date using c#

I'm trying to add a DateTime column to a DataTable. I use that code: DataTable dt = new DataTable(); dt.Columns.Add("date", typeof(DateTime)); But this requires a DateTime with the format "dd.MM.yyyy HH:mm:ss". What I want is only the date. So…
Therk
  • 391
  • 6
  • 23
2
votes
2 answers

Detecting Drop down with Selenium WebDriver

https://i.stack.imgur.com/L4WUv.jpg Link to Grid I'm trying to detect the different drop downs on this page (depicted by the filters by the text boxes). The problem i'm having is that it seems that the filters all have the same ids. I can get the…
2
votes
0 answers

Filter Telerik WPF RadGridView from ViewModel in MVVM app

I am going crazy trying to figure out how to manipulate telerik RadGridView for WPF's column filtering from my ViewModel. I thought I might be able to bind the value of a FilterDescriptor to a ViewModel property, but I get Cannot find governing…
jayint32
  • 1,132
  • 8
  • 12
2
votes
2 answers

Restrict button click on telerik radgridview cellValidating event - winforms

I was testing its cellValidating event which has some problem or may be i am missing something. When the radgridview cell in in edit mode i cannot click anywhere on the form thats fine here. But when i click on button, code executes and my form…
user3004110
  • 929
  • 10
  • 24
  • 36
2
votes
1 answer

Add tool tip on a column of Grid(Winforms) using ToolTip class and is it possible or not?

I want to add a tooltip using ToolTip class on a column of a grid in winforms. I want this because I need to extend duration of builtin grid tooltip in radgridview. If you can help me in settings the time of builtin tooltip of grid then it would…
Kashif
  • 14,071
  • 18
  • 66
  • 98
2
votes
2 answers

How i get RadGridView column summation?

i am using Telerik tools in Win forms i couldn't get sum of column in rad text box know how to do in normal grid view any suggestion pleas ? int sum = 0; for (int i = 0; i < radGridView1.Rows.Count-1; ++i) { sum +=…
user3210084
2
votes
1 answer

How to update the RadGridView when the filter is set?

I have telerik RadGridView with columns "status", "Name" and a RadButton with name "Update", when the grid is loaded the rows will have different status like "pending" "unread" and "cleared". When user selects a row with status pending and clicks on…
GANI
  • 2,013
  • 4
  • 35
  • 69
2
votes
3 answers

Bind GridViewComboBoxColumn Datasource programmatically

On a WinForms application with C# I'm using RadGridView control of Telerik company. One of the columns of this RadGridView is of type GridViewComboBoxColumn. I want to give this column a DataSource populated at runtime and then set the three…
Mahdi Tahsildari
  • 13,065
  • 14
  • 55
  • 94
1 2
3
29 30