RadDiagram:


Bing's branding guidelines states, "Bing Maps data provider attribution information can be accessed through the Get Imagery Metadata method in Bing Maps REST Services."
https://www.microsoft.com/en-us/maps/mobile-brand-guidelines
I see there's an imagery metadata classes in RadMaps, but I don't see how to access or use them. Can you provide an example?

In one of our applications, we want to restrict access to a configuration page.
Throughout the application, we are using RadWindow.Alert, Confirm and Prompt as our UI messaging system.
We don't need a crazy overdoing of security to restrict the configuration page, but it would be nice if we could change the TextBox of the RadWindow.Prompt to be a PasswordBox so the contents of the box are not visible to anyone looking at the screen.
Is there any way to do this? I would rather stay with the consistent look/behavior of using the RadWindow since we are already using it in several other places.
Thanks!!
Paul

Hello,
I am trying to spellcheck certain controls in our project. However, whenever I make a call to RadSpellChecker.Check(this.textBox1, SpellCheckingMode.WordByWord), the corresponding spell checking window does not seem to load/open properly (there is just a transparent footprint of the window). Our project uses implicit themes and we suspect this is causing the problem. On a small test project (no implicit themes), the RadSpellChecker seems to work fine. Thank you.

I have changed my shell to a RadWindow, the problem is I now get unable to cast to Window in the BootStrapper. Is there a way around this?
Hi,
I have some problems to keep selection when using the search functionality of the Grid.
To reproduce the problem:
- use the BoundSelectColumn of the Telerik sdk sample
- Hit Ctrl+f to make the search box visible
- Type 'pool' in the search box and check the 'liverpool' row
- Clear the search box => all row are displayed and liverpool is checked That's OK
- Type 'nal' in the search box and check the 'Arsenal' row
- Clear the search box => all row are displayed and Arsenal is checked but liverpool is not That's KO
Why the search functionality is clearing the isSelected property ?
How can i keep it's value between several search ?
Thanks
Ced,
I am using the very latest (as of this writing, 5-FEB-2018) Telerik UI for WPF
I just started using the RadColorPicker and saw that it draws text on the button. I wanted just a button with the chosen color on it. No text. I thought it would be just some sort of simple property. But as far as I can tell, it is not. Now maybe it's just me but this seems almost fundamental. Why would you force people to have text on a color selector?
I see someone asking this very question 6 years ago ("Why does my colour picker look like a FONT colour picker?"). But even now, six years later I still don't see any sort of simple property to do this. Am I missing something?
https://www.telerik.com/forums/why-does-my-colour-picker-look-like-a-font-colour-picker
I downloaded the sample solution that was in that thread . It uses an obsolete property, so I continued following the instructions and made the adjustments recommended in the "Backwards compatibility" section It still does not work for me
I saw another thread in which someone tried just putting a color selector inside of a RadDropDownBox. but that solution is overkill for me. I want to use the ColorPicker.
I've attached a picture with an example of what I *want* directly above an example of what I'm currently getting. In the picture, the square next to "Foreground Color" is what I want. And the square next to "Selected Color" is what I'm getting.
Is there a more up-to-date solution for this? Or can someone at least tell me what changes to make the the default template
I have a GridView which has several columns. I want to click any row to bring up the row details. I don't want to use <telerik:GridViewToggleRowDetailsColumn/>.
The reason is that it is put in the first column. What I want is to click any place in the row will show the row details. Click the row again will collapse the details. My plan is to put button in every column. So the common code in every column is
<ItemContainerTemplate> <Button Command="{Binding OpenDetailsCommand}" / </ItemContainerTemplate>The entire code of the RadGridView is:
<telerik:RadGridView Grid.Row="0" Name="clubsGrid" ItemsSource="{Binding Clubs, Source={StaticResource MyViewModel}}" AutoGenerateColumns="False" RowDetailsTemplate="{StaticResource RowDetailsTemplate}" Margin="5"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}"> <telerik:GridViewDataColumn.CellTemplate> <ItemContainerTemplate> <Button Command="{Binding OpenDetailsCommand}" /> </ItemContainerTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn> <telerik:GridViewDataColumn DataMemberBinding="{Binding Established}" Header="Est." DataFormatString="{}{0:yyyy}"> <telerik:GridViewDataColumn.CellTemplate> <ItemContainerTemplate> <Button Command="{Binding OpenDetailsCommand}" /> </ItemContainerTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn> <telerik:GridViewDataColumn DataMemberBinding="{Binding StadiumCapacity}" Header="Stadium" DataFormatString="{}{0:N0}"> <telerik:GridViewDataColumn.CellTemplate> <ItemContainerTemplate> <Button Command="{Binding OpenDetailsCommand}" /> </ItemContainerTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn> </telerik:RadGridView.Columns> </telerik:RadGridView></Grid>The button command is
public ICommand OpenDetailsCommand = new DelegrateCommand<object>(OpenDetailsStackPanel);private void OpenDetailsStackPanel(object parameter){}The question is the code doesn't reach the method. So what is wrong?