Hi,
I'm trying to migrate from RadScheduler to RadscheduleView and I am on version 2012.1.326.40 right now.
I had a lot of filter options for the user that I implemented by filtering a CollectionViewSource that was bound to the RadScheduler's appointments source.
This doesn't seem to have any effect to the RadScheduleView though.
Is this a bug? What would be an alternative approach?
Any help would be highly appreciated.
Best Regards
Steffen
Hi,
I'm trying to migrate from RadScheduler to RadscheduleView and I'm on version 2012.1.326.40 right now.
Due to very heavy appointment templates I have to deactivate the animations when transitioning, because they hang for a long time even on the fastest machines.
This was easy to do, but somehow this stopped to work with 2012.1.
I tried without success:
-Telerik.Windows.Controls.Animation.AnimationManager.IsGlobalAnimationEnabled = false;
-Telerik.Windows.Controls.Animation.AnimationManager.SetIsAnimationEnabled(UIscheduler, false);
-telerik:AnimationManager.IsAnimationEnabled="False"
How can I disable these animations?
Any help would be highly appreciated.
Best Regards
Steffen
Hi,
Sometimes my RadPane headers are missing even though when I set breakpoints in the code I can see it being set. My views inherit from RadPane. Below is an example of it being set. I have included a picture of the header not showing. It seems strange because sometimes the header shows fine and sometimes it doesn't.
public partial class CustomerView : RadPane{ public CustomerView (string paneHeader, string serializationTag) { this.Header = paneHeader; RadDocking.SetSerializationTag(this, serializationTag); InitializeComponent(); }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.
