Hello, i have this, were working using microsoft grid, how can i make it work with the winforms grid?
When i try to add a new row raise an exception like 'System.MissingMethodException' no parameterless constructor.
[Serializable]public class ScheduledMovement : NotifyPropertyChanged{ //various props public excMovements Movements {get;set;} //other}public class excMovements : BindingList<ScheduledMovementDetail>, IBindingList{ protected override object AddNewCore() { ScheduledMovementDetail n = new ScheduledMovementDetail(parent); Add(n); return n; }}
Hi,
I've been trying to figure out how to get my radgridview to colour/put a border around the selected cell only when the user clicks on it. At the moment, using the following code, the grid draws horizontal borders on the selected row when a cell is selected (image attached).
Private Sub gridView_CellFormatting(sender As Object, e As CellFormattingEventArgs) Handles gridView.CellFormatting
If Not e.CellElement.IsCurrent AndAlso
e.CellElement.RowInfo.IsCurrent Then
e.CellElement.BorderColor = Color.FromArgb(208, 215, 229)
Else
e.CellElement.ResetValue(LightVisualElement.BorderColorProperty, ValueResetFlags.Local)
End If
End Sub
Private Sub gridView_RowFormatting(sender As Object, e As RowFormattingEventArgs) Handles gridView.RowFormatting
e.RowElement.DrawFill = False
e.RowElement.DrawBorder = False
End Sub
How can I get those lines above and below the row to go away?
Thanks for your help.
Hello.
after applying localization for RadReminder, returned value for reminder in "Appointment Form" limited and after reopened the form, reminder value changed to hours.
for example "5 minutes" changed to "5 hours".
applied culture is set to "fa-IR".
Thank you.
Hi,
how can I get the user selected PDF file location from RadPdfViewerNavigator?
thanks
Georgi

Here is a sample BarSeries:
01.BarSeries barSeries = new BarSeries("Performance", "RepresentativeName");02.barSeries.Name = "Q1";03.barSeries.DataPoints.Add(new CategoricalDataPoint(177, "Harley"));04.barSeries.DataPoints.Add(new CategoricalDataPoint(128, "White"));05.barSeries.DataPoints.Add(new CategoricalDataPoint(143, "Smith"));06.barSeries.DataPoints.Add(new CategoricalDataPoint(111, "Jones"));07.barSeries.DataPoints.Add(new CategoricalDataPoint(118, "Marshall")); 08.this.radChartView1.Series.Add(barSeries);09.BarSeries barSeries2 = new BarSeries("Performance", "RepresentativeName");10.barSeries2.Name = "Q2";11.barSeries2.DataPoints.Add(new CategoricalDataPoint(153, "Harley"));12.barSeries2.DataPoints.Add(new CategoricalDataPoint(141, "White"));13.barSeries2.DataPoints.Add(new CategoricalDataPoint(130, "Smith"));14.barSeries2.DataPoints.Add(new CategoricalDataPoint(88, "Jones"));15.barSeries2.DataPoints.Add(new CategoricalDataPoint(109, "Marshall"));16.this.radChartView1.Series.Add(barSeries2);How can I
1) Asign some value (e.g, an Id) to a BarSeries?
2) Asign a ContextMenu to a BarSeries to get its Id?

Is there a way to set alignment (like right, center) of CaptionText and ContentText?
Kind regards...

Hello,
How can I hide aggregators and column descriptors areas (see attached image)?
So far I found what I can execute the following code
pivotGrid.PivotGridElement.AggregateDescriptorsArea.Visibility = ElementVisibility.Collapsed;pivotGrid.PivotGridElement.ColumnDescriptorsArea.Visibility = ElementVisibility.Collapsed;and these areas will not be visible, but their placeholder still be displayed, i.e. empty rectangle at the top of the pivot grid. How can I completely collapse these areas?

Dear All,
I need a radgridview with PageSize = 20; which i want fill datasource by pagesize and current page index changed,
Ex: in Database i have record 100, so in my radgrid datasource i will fill with VirtualItemRecordCout = 100, which will generate 5 page, and fill page 1 only 20 rows from database rownum selection, and when i changed my radgrid index to page 2, i will fill my datasource from rownum 20 till 40 from my record nums in database selection.
in ASP telerik radgridview have property VirtualItemCount, how about in WinForms ? i really need cause i have lazy record, and its so long if i much select all,
I need your great solution.
Thanks.

Hello,
I use RadListView in ListView mode. Each tic of mouse wheel, the RadListView scrolling three lines (rows).
I want to scroll only one line. How can I do this?
Kind regards.
Hi to all,
I would apply a filter descriptor on column and I don't what that user can apply any filters.
But, my filter descriptor has any effect if I set EnableFiltering = False
How can I do it?