I am using Q1 2008 Winforms.
There is radgridview named 'gv'. gv is filling with some manipulated data. I can filter by clicking and selecting some values. I want to filter wiht my own buttons. Basicially i created filter like this:(c#)
01.private void btFilter3_Click(object sender, EventArgs e)02.{03. gridTest.EnableFiltering = true;04. this.gridTest.FilterDescriptors.Remove("IssueDate");05. FilterDescriptor filter = new FilterDescriptor();06. filter.PropertyName = "IssueDate";07. filter.Operator = FilterOperator.IsGreaterThan;08. filter.Value = DateTime.Now.AddMonths(-5); 09. filter.IsFilterEditor = true;10. this.gridTest.FilterDescriptors.Add(filter);11.}
By clicking the button code is running. On Screen; the date value (what i described above) is appearing on filter area. But data on the gv isn't filtering.
When i filter with another value(date) manually, gv is filtering. After that manually process when run code by clicking the button, code is running and data on the gv is filtering also.
I need filter without manually process.
What am i missing?
Hi everyone,
when a radmessagebox pops up , its not exactly on the center of screen .
How to align it to the center of screen?

I don't see an object called RadGridLocalizationProvider anywhere.
Is the RadGridLocalizationProvider an object encapsulated by the grid?



Grid just populated with few rows, so there is an empty area below those rows.
Multiselection is enabled.
Grid has just been populated, so there are no selected rows.
If I click on the empty area below the rows, I get this exception:
System.Exception: Exception caught byCurrentDomain.UnhandledException - type: System.NullReferenceException value:System.NullReferenceException: Object reference not set to an instance of anobject.<br> atTelerik.WinControls.UI.GridRowBehavior.DoMultiFullRowSelect(GridCellElementcurrentCell, Point currentLocation)<br> atTelerik.WinControls.UI.GridRowBehavior.DoMouseSelection(GridCellElementcurrentCell, Point currentLocation)<br> atTelerik.WinControls.UI.GridRowBehavior.ProcessMouseSelection(PointmousePosition, GridCellElement currentCell)<br> atTelerik.WinControls.UI.GridRowBehavior.OnMouseMove(MouseEventArgs e)<br> atTelerik.WinControls.UI.BaseGridBehavior.OnMouseMove(MouseEventArgs e)<br> atTelerik.WinControls.UI.RadGridView.OnMouseMove(MouseEventArgs e)<br> atSystem.Windows.Forms.Control.WmMouseMove(Message& m)<br> atSystem.Windows.Forms.Control.WndProc(Message& m)<br> atTelerik.WinControls.RadControl.WndProc(Message& m)
if I select a row, before clicking on the empty area, nothing happens.
I could preselect a row, just after populating. but I'd like to understand why this happens

Hi dear Telerik team.
I have a VirtualGrid.
I have made workaround to substitute indent cell of a row with a text, lets call it "row header".
And I would like to know how can I deal to make "row header" looks absolutely the same as "column header" by the easiest way?
Please find attachment bellow.
Much thanks!


Hello,
When I click the tab on the last cell while it is in edit on the grid view, it should not navigate anywhere instead it should stay on the same cell (last cell) for editing.
Currently, when I click on the Tab button it moves to the next control or moves to the next row in the gridlines. Please kindly help me.
Thanks in advance.