I have RadGridView when editable columns. When the user updates the value of a cell and then clicks anywhere else outside the grid, I expected there will be a Edit.Commit, but instead the cell is still in edit mode until you go in to that cell and hits Enter (or clicks on another row in the grid) .
How do I make this happen, MVVM-approach if possible
Many thanks in advance, Robert
<telerik:RadContextMenu.ContextMenu>
Hello, we want to convert all windows in our multiwindow- application from System.Windows.Window to RadRibbonWindow or RadWindows, to offer the user a uniform impression. Unfortunately the RadWindow behaves differently than the System.Windows.Window when it comes to minimizing and the taskbar.
Using the RadRibbonWindow for all windows seems to be a working solution, but is it a good idea? Or is it only intended for use with a RadRibbonBar?
Maybe there is another way to use Telerik themes with System.Windows.Window's?
greetings
sebastian


I have create a project where the user creates different filter buttons which, when clicked, updates the SearchText in the SearchPanel. And then the user can persist these saved buttons and reload at startup. Everything is working great except one thing! If the user sets SearchText and the grid then gets new data, the SearchText goes blank. Is there a way to persist the SearchText regardless of the underlining data changing?
I am actually using an external Textbox to set the SearchText and followed some of your examples of binding to the SeachText.
private void OnLoaded(object sender, RoutedEventArgs e)
{
this.GridStats.ShowSearchPanel = false;
_vmSearchPanel = this.GridStats.ChildrenOfType<GridViewSearchPanel>().FirstOrDefault();
this.txtFilter.SetBinding(TextBox.TextProperty, new Binding("SearchText") { Source = _vmSearchPanel.DataContext, Mode = BindingMode.TwoWay });
}
On a side note, it would be nice to be able to easily save/load SearchText because it makes a quicker way version saving all the Filter criteria on the Grid or using a RadFilter if you just want one textbox.

After reading the documentation on the RadTransitionControl, I'm no closer to understanding how it works. You have some sample code but it is out of context and/or partial. I'm trying to perform a simple task of fading in/out two images.
Any hints? I don't need to load and entire project or solution ... just a relevant code snippet would do.
Cheers, Rob.

Hello Telerik Team,
I'm trying to change the orientation of my tiles within a group from vertical default orientation to horizontal orientation.
I already created a class derived from TileListPanel overriding the default orientation:
public class CustomTileListPanel : TileListPanel{ protected override bool HasLogicalOrientation { get { return true; } } protected override Orientation LogicalOrientation { get { return Orientation.Horizontal; } }}
But unfortunately this has no effect.
Please tell me how I can change the orientation of the tiles.
Regards,
Johannes

Hello.
I'm trying to use a shortcut key for an item in the navigation child.
It was successful until the view was opened by generating a command by receiving a gesture by key binding.
However, it is not a choice for navigation items.
I set the navigation index, but it didn't work.
Is there a way to open the upper layer and select the lower layer?
Thanks.

