Radpdfview showing blank for some pdf documents. I am binding the pdf viewer like:
this.pdfDocumentViewer.DocumentSource = new PdfDocumentSource(new Uri(winModel.PdfPath));
My pdf file is like:
%PDF-1.5
%âãÏÓ
1213 0 obj
<</Filter/FlateDecode/First 656/Length 2401/N 81/Type/ObjStm>>stream
And
%PDF-1.7
<</Filter/FlateDecode/Length 128>>stream
Both pdf documents are scanned images. Need help.

I want to know how to have a behaviour for telerik:RadTreeListView so that on double clicking on row it should show it's row retailer.
My work flow is as below.
1) Row has child rows, first Double clicking on it, it should show it's child rows. After another double click it should show it's row detailer.
2) Revers also need to work like already row detailer got opened, then on double click it should collapse it.
3) Everything should be in MVVM not code behind please.
Please provide a sample application.
I use Vertical Linear Scale control as Bar control
Min = -50 and Max = 50
by timer i get values and each tick the bar is filled till the value that came from -50 till the value
but I want that the start value to fill the bar will stay 0
For Example: if I will get value = 20 I want the bar will be filled from 0 to 20
and if i will get value = -20 I want the bar will be filled from -20 till 0
Thanks
Shoshana

I am developing a WPF (MVVM) application for weather forecasts/hindcasts using a RadMap (Bing maps underneath). I am overlaying the weather images using a VirtualizationLayer and all looks good. What I would like to do next is have a further layer with animated arrows depicting the strength/direction of the wind. Along with the weather tile images, I can also source raw data that will give me this info for a specific location. I came across a website that gives a decent example of what I am trying to achieve: https://www.windy.com/?38.307,-128.364,4 There appears to be some web component that is providing this animation. Would this be possible with a Telerik component?
regards,
Grant


Currently, I'm trying to use Drag/Drop in my application however none of the events in relation to this are firing. Is this a known issue? If so, are there workarounds?
I've also tried to use ItemDoubleClick even which is also not getting fired.
Please do let me know.
TIA

I am going to use the footer to sum all values.
<telerik:GridViewDataColumn.AggregateFunctions> <telerik:SumFunction ResultFormatString="{}{0:C2}"/> </telerik:GridViewDataColumn.AggregateFunctions>There are many columns, one of them I want to set the foreground color as Red.(Not all columns, just one important column)
First question: How to do it?
Second question: I saw the bottom border line of the footer is gone. Why?
Thanks

Hi everyone!
I use a Version 2015.1.401.40 GridView to show entries with a bool value. I want to show only entries with the bool value 'false', but keep the possibility to look at the other entries too.
So I created a Behavior for the GridView:
private RadGridView Grid { get => AssociatedObject as RadGridView; } protected override void OnAttached() { base.OnAttached(); Grid.DistinctValuesLoading += Grid_DistinctValuesLoading; Grid.FilterOperatorsLoading += Grid_FilterOperatorsLoading; } private void Grid_DistinctValuesLoading(object sender, GridViewDistinctValuesLoadingEventArgs e) { e.ItemsSource = new List<bool>() { true, false }; } private void Grid_FilterOperatorsLoading(object sender, FilterOperatorsLoadingEventArgs e) { IColumnFilterDescriptor okFilter = Grid.Columns["IsStandinSetupOK"].ColumnFilterDescriptor; okFilter.SuspendNotifications(); okFilter.DistinctFilter.AddDistinctValue(false); okFilter.ResumeNotifications(); }
And as expected only entries with the IsStandinSetupOK value 'false' are shown. But that filter is not indicated by the Icon, and the filter menu looks like there is no filter active (see screenshot). Even clicking 'Clear Filter' does nothing, to remove the filter I have to activate either the true or false filter first, THEN click 'Clear Filter'.
The GridView is filled with entries only after the filter was applied.
Any idea what I did wrong?
Best regards,
Stefan

Hi,
I have a problem showing the right editor für the properties for items inside a collection.
For RadPropertyGrid.Item I set a collaction.
The items of the collection has some EditorAttribtes set.
But at the ProbpertyGrid the Attribute is ignored.
Is there anything I can do to get this working?
private void Grd_OnSelectedCellsChanged(object sender, GridViewSelectedCellsChangedEventArgs e) { PropGrid.Item = new List<Test> {new Test {Name = "N1", Number = 1}, new Test {Name = "N2", Number = 1}}; }public class Test{ public string Name { get; set; } [Telerik.Windows.Controls.Data.PropertyGrid.Editor(typeof(TextBlock), EditorStyle.Modal)] public int Number { get; set; }}
Hi,
Is there a way that I can configure the selection for the TileList, so that, the user can select multiple tiles but only one tile per group?
Like the behavior of a RadioButton, for example?
Thanks in advance.