Telerik Forums
UI for WPF Forum
3 answers
184 views
I am not sure what do you call the popup that shows when a new version is available to download. This would show up for couple of seconds and go away. 

We want to use this popup in out application as a reminder popup that would just show and hide instead of waiting for a response from the user. 

Anyone know what is this popup called and how to use this?

Any help is greatly appreciated. 

I am attaching the screen shot of it, just in case I don't make sense. 
Lancelot
Top achievements
Rank 1
 answered on 29 Jun 2012
1 answer
262 views
Hi,

i'm workink with the wpf q2 2012 rad controls. I want to load a html in the RichTextBox named "editor". I can load text
byte[] _Buffer = null;
_Buffer = FileToByteArray(test.html);
editor.Document = provider.Import(_Buffer);

So far ok, but all the images are not shown. How to use the LoadImageFromUrl Event? Can't find a working example.
And the second problem are the german words with "ä", "ü", "ö",.. They are shown as question mark.
Thanks
Regards
Rene
Iva Toteva
Telerik team
 answered on 29 Jun 2012
1 answer
177 views
Hi,

i want to use radcombobox for autocomplete as Textbox with autocomplete =).
1. How to set visibitility for drop down button(arrow) to false?
2. How to drop down menu on text input with IsFilteringEnabled="True" ?

Best regards,
Dmitrijs Solovjovs

Vladi
Telerik team
 answered on 29 Jun 2012
9 answers
302 views
Hi,

I've some problem to manage one binding.

Here is my case:

I've a RadGridView, which basically allows me to sort/search/filter a datacollection, and then details are displayed and editable on the right of the radGridview.

One column is a GridViewImageColumn. This image represent the "status" of the element of the current row.

Here is my binding: 
DataMemberBinding="{Binding Converter={StaticResource MyRowToImageConverter}}"


To display the content of this column, I need a converter, which takes the whole current row, analyze it and give the correct image.

This choice is made on several fields(Enums, ObservableCollections, ...)

The converter is working good and display the correct icon, the problem, is that when something change(the most typical case is the ObservableCollection, which get a new element), the binding isn't aware of this change.

So I don't see how to update this fields:
-I don't think it's possible to have a Multiple data binding in the radGridView(if yes, I can bind every fields I use for the calculation, and then, when one change, I receive the change event and then the binding is automatically updated)
-In the code behind I get informed when I should update thoses fields, but I've no idea about how to ask to refresh one(or all) binding of the current row

So how can I do this??

Thank you for your help


Pavel Pavlov
Telerik team
 answered on 29 Jun 2012
1 answer
141 views
I was wondering what the capabilities are of the Telerik charts.  I want to chart live data as fast as possible without losing performance.  The current way it is integrated, the performance is good, but after I like it chart for awhile, the performance starts to suffer and I start getting delayed responses and inaccuracies.  I am trying to figure out of this is normal for Telerik controls or if it's something with the code that's written.  Note: I am logging all the data as well to use for playback features, I realize this might be taking up system resources too? 

Microsoft Pro XP SP3
i5 3.60GHz
3.49 GB RAM
ATI FirePro V4800 GPU
Ves
Telerik team
 answered on 29 Jun 2012
1 answer
176 views
If I have document panes in two RadPaneGroups, the dropdown list of open documents is only shown in the first group.  Is this by design? And if so would it be possible to have it displayed in all groups? I've attached an image illustrating the current problem.
Thanks in advance,
Steve
Georgi
Telerik team
 answered on 29 Jun 2012
4 answers
354 views
Hi,
how can I trigger the ChartTrackBallBehavior programmatically?
In my scenario I set the chart IsManipulationEnabled to True. Since this I don't get the TrackBallInfo when I touch the chart. Is there a way to get around this?

Cheers,
Enrico
MikeWiese
Top achievements
Rank 1
 answered on 29 Jun 2012
1 answer
156 views
I have a collection of ScanSessions, each of which contains a collection of Waypoints. I have a RadGridView for displaying a list of the ScanSessions and I have another RadGridView for displaying the list of Waypoints in the selected ScanSession. I am also trying to write the XAML to create a RadMap InformationLayer that displays all the Waypoints for all the ScanSessions on a map. The reason for this is to make it easy to indicate on the map which Waypoint is selected in the grid view and vice versa.

I tried to do this by nesting one InformationLayer inside another as seen in the following XAML:

<UserControl.Resources>
    <local:LocationToTelerikConverter x:Key="LocationToTelerikConverter"/>
    <local:LocationCollectionToTelerikLocationCollectionConverter x:Key="LocationCollectionToTelerikLocationCollectionConverter"/>
 
      <SolidColorBrush x:Key="ControlSubtleForegroundBrush" Color="#004100"/>
 
    <DataTemplate x:Key="MapWaypointsTemplate">
        <Grid Tag="{Binding}" telerik:MapLayer.Location="{Binding Path=Location, Converter={StaticResource LocationToTelerikConverter}}">
            <telerik:MapLayer.HotSpot>
                <telerik:HotSpot ElementName="WaypointEllipse" X="0.5" Y="0.5" XUnits="Fraction" YUnits="Fraction"/>
            </telerik:MapLayer.HotSpot>
            <Ellipse x:Name="WaypointEllipse" Width="20" Height="20" Fill="Blue"/>
        </Grid>
    </DataTemplate>
</UserControl.Resources>
 
<Grid Background="Black">
    <telerik:RadMap x:Name="map" Background="Transparent" UseSpringAnimations="False" DistanceUnit="Kilometer" MouseClickMode="None"  HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
                UseDefaultLayout="False" MaxZoomLevel="24" MinZoomLevel="1" ZoomLevel="1"
                MapMouseClick="OnMapMouseClick" CenterChanged="OnMapCenterChanged" ZoomChanged="OnMapZoomChanged" InitializeCompleted="OnMapInitializeCompleted" PreviewMouseMove="OnMapPreviewMouseMove"
        >
        <telerik:RadMap.Providers>
            <telerik:EmptyProvider/>
            <!-- Provider set programmatically. -->
        </telerik:RadMap.Providers>
 
        <telerik:InformationLayer x:Name="scanSessionSnailTrailLayer" ItemsSource="{Binding ElementName=_this, Path=ScanSessions}">
            <telerik:InformationLayer.ItemTemplate>
                <DataTemplate>
                    <telerik:MapPolyline Stroke="Blue" StrokeThickness="2" Points="{Binding Path=WaypointLocations, Converter={StaticResource LocationCollectionToTelerikLocationCollectionConverter}}"/>
                </DataTemplate>
            </telerik:InformationLayer.ItemTemplate>
        </telerik:InformationLayer>
 
        <telerik:InformationLayer x:Name="scanSessionWaypointsOuter" ItemsSource="{Binding ElementName=_this, Path=ScanSessions}">
            <telerik:InformationLayer.ItemTemplate>
                <DataTemplate>
                    <telerik:InformationLayer x:Name="scanSessionWayPointsInner" ItemsSource="{Binding Path=Waypoints}" ItemTemplate="{StaticResource MapWaypointsTemplate}"/>
                </DataTemplate>
            </telerik:InformationLayer.ItemTemplate>
        </telerik:InformationLayer>
    </telerik:RadMap>
</Grid>

The problem is that none of the Waypoint ellipses are displayed. I have also tried replacing both the outer and inner InformationLayer elements with simple ItemsControl elements, with no success.

Note that the InformationLayer named scanSessionSnailTrailLayer works just fine.

Does anybody have an idea how to get my nested InformationLayers to work?

Thanks,

-- john
Andrey
Telerik team
 answered on 29 Jun 2012
4 answers
289 views
When you double click on an email in Outlook, it open a floating window for the email, and the floating email contains its own Ribbon bar and also it shows in the windows taskbar.  Could you provide suggestions how can we implement the behavior with RadControls?

We are using RadControl for WPF 2012.2.0607.40 with Prism (MVVM).  The layout of our application is very similar to Outlook, and the main window is RadRibbonWindow, which contains a RadRibbonView, and a RadDocking is within the RadRibbonView. and, of course, RadDocking.DocumentHost host all documents.  We would like each document has its own RibbonView IF THE DOCUMENT IS FLOATING, also we would like all floating ToolWidnows show in Window TaskBar.

Thanks.
Ivo
Telerik team
 answered on 29 Jun 2012
10 answers
501 views
Hi there,

Does anyone know how to go about creating mouse over effects for custom annotations?
For example, if I "mouse over" between a custom annotation range I may want the font colour, or font size to change or to even highlight the annotation. Going even further, maybe have some way to activate a little popup window which in turn may display more detailed information about the annotation properties (I guess that's similar to the Comments Annotations feature).

Any information would be really handy.

Thanks for your time,

Rob
Alex
Telerik team
 answered on 29 Jun 2012
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?