We have a RadRibbonDropDownButton declared inside a user control. What we like to achieve is to open the DropDown-Content by using F2 on the keyboard. Best would be without code behind (MVVM/PRISM). Unfortunately the "<UserControl.InputBindings>" are not working as expected. Is there another way to define a shortcut key on RadRibbonDropDownButton? n. b. this button is not inside a RibbonView, but used "as is" in a DockPanel.
Regards
Neils
Hello,
I have a RadDocking control in my application. I have a generic style
for toolwindow to override default template. Now I want to change colors
dynamically but it's seems not working. If the radpane is docked is working
well, but if the pane is floating don't work.
I attached an example of this.
In this example I have an empty docking and three buttons, on to create new
floating pane and the other ones to change the color.
If I change color first
of all it's works, but it fails in other cases.
Link to test project:
https://github.com/gabrielmoral/TelerikErrorStylePanes
Steps for test:
1º
Create new pane and dock it.
2º Create new pane.
3º Change color -->
Pane 1 correct color, pane 2 wrong color.
4º Pin Pane 2 --> correct
color.
5º Unpin pane 2 ---> wrong color
6º Create new pane --> wrong
color
Another test:
1º Change color.
2º Create new pane ->
correct color.
3º Pin and unpin panel --> correct color.
I hope you
can help me to solve this problem.
Thanks in
advance.
Regards,
Javi
Hi,
I have a custom WPF control that contains the RadMap in its control template. The provider is Bing and the mode is set to "Road" mode. When switching the map to Aerial mode, the application crashes and I see the following error:
InvalidOperationException was unhandled: Cannot set a property on object 'Telerik.Windows.Controls.Map.BingMapProvider' because it is in a read-only state.
This does not happen with the ArcGIS or OSM provider. I would really like to use the Bing provider though... any idea what might be causing this?
Hi,
I just updated radControls to version 2015.1.225.40 and noticed strange behaviour on GridViewMaskedInputColumn.
GridViewMaskedInputColumn is defined in code-behind:
GridViewMaskedInputColumn column = new GridViewMaskedInputColumn();
column.DataMemberBinding = new Binding(bindKey);
column.Header = headerText;
column.UniqueName = uniqueName;
column.MaskType = MaskType.Standard;
column.Mask = "N##°##'##.#'' E##°##'##.#''";
So when I adding new value, mask is shown correctly before I start to entering a value and after it (see pict1.png and pict2.png)
but when i click the cell again (and cell goes to edit mode), last character disappears? (see pict3.png)
and always, when I click the cell it removes the last char?
Any ideas?
Regards,
Auvo
Hi all,
I have a problem with KeyUp event on a RadMenuItem. When I tab to change the focus of an element from textblock to RadMenuItem, it changes as usual but when I pressed the Enter button the focus would be changed automatically from RadMenuItem to the previous textblock but other buttons work properly. What I want is firing a pressing Enter button event to do some activities.
<telerik:RadMenuItem Header="{Binding DisplayHeader}" ItemsSource="{Binding Buttons}" ItemContainerStyleSelector="{StaticResource PageActionCustomButtonItemTemplate}" KeyboardNavigation.IsTabStop="False">
<i:Interaction.Triggers>
<i:EventTrigger EventName="KeyUp">
<cal:ActionMessage MethodName="PressingEnter">
<cal:Parameter Value="$eventArgs"/>
</cal:ActionMessage>
</i:EventTrigger>
</i:Interaction.Triggers>
</telerik:RadMenuItem>
Thanks,
Tan