How can I go through the Appointment list and know if the appointment is happening today.
Of course that includes all the limitations of Recurrence and ExceptionOccurence, I want to know the bottom line whether it is happening today or not.
Would appreciate help
How to reproduce:
To simplify the problem, I used a basic RadGridView and implemented a horizontal mouse wheel scrolling like so:
private void GridView_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
{
if (((RadGridView)sender).ChildrenOfType<ScrollViewer>().FirstOrDefault() is ScrollViewer scrollViewer)
{
if (Keyboard.Modifiers.Equals(ModifierKeys.Shift))
{
if (e.Delta < 0)
{
scrollViewer.LineRight();
}
else
{
scrollViewer.LineLeft();
}
e.Handled = true;
}
}
}
I used the solution found in this thread and added the code above.
https://www.telerik.com/forums/horizontal-scrolling-w-mouse-wheel-trackpad
Horizontal mouse wheel scrolling works fine until I open the text search (Ctrl + F). After opening the search bar, the ScrollViewer seems to be changed in a way that scrolling with the mouse wheel + shift behavior is not working anymore.
I would be very grateful for any help.
Best regards
Jonas

Hi,
The RadCalculatorPicker is a great option to provide spreadsheet-like input for the user. You can open the calculator by hitting the down-arrow key, but once opened the only way to close is to click on the button again. Typically the user will be entering on the keyboard, typing in the formula rather than clicking it in, making this pretty cumbersome.
Is there a way to automatically close the popup when hitting enter, an event I can intercept?
Regards
Renier
Hi,
I use RadGridView component, that I want to clean and reuse with different data in code behind (for example by clicking on button).
So what am I doing is calling a clear on all Columns (RadGridView.Columns.Clear()) and then I will start adding new columns for different data.
But the problem is when I use it with GridViewColumnGroup the clearing or adding new Columns takes an long time (seconds or minutes for test example where I have 500 Columns and 50 ColumnGroups).
Even if I add ColumnGroups before adding Columns, it will only slightly improve the situation.
This slow processing occurs only after component has been displayed at least once. If the component was not already loaded (shown) it takes almost no time.
I tried hidding component before this process, or unsetting ItemsSource, but nothing helped.
Thank you for any help.
Edit:
I added image of Callstack, when i call Clear() method on Columns:
We have observed that minimized Telerik window/control is not showing few characters of title. We would like to see the few characters of window title even in minimized state. Do we have any property to control the width of minimized window?
Thanks in advance,
Manohar
Hello,
My question is: how to prevent click on disabled cells?
I have some disabled cells in my RadGridView (their "IsEnabled" property is set to false), yet when I click on them, it actually adds a border around the very first cell of the corresponding row, setting it in an "unfocused" state:
On this screenshot, I clicked in the bottom right cell and it set a white border around test2.
How to avoid this? In my opinion, clicking on a disabled cell should have no effect at all.
Thanks,
Arthur
Hello,
I am using the MVVM style on a RadRichTextBox and the XamlDataProvider (using a view model to populate the Xaml through binding). The problem is that I also want to be able to scroll the box after I set the Xaml, preferably as a percentage of the total possible scroll. I can get it to scroll down but then it goes right back.
Any thoughts?
Hello,
I'm binding my grid to a collection of RowViewModel, which are basically DynamicObjects that maintain a Dictionary<string, CellViewModel>.
I've read this article to do this : WPF DataGrid | Data Bind to Dynamic Object with CLR and Dynamic Properties | Telerik UI for WPF (even if I'm not using CLR properties at the moment).
Now the thing is, for some rows and columns, it doesn't make sense having a cell (this is business-related).
So for these rows/columns, I don't create a new entry in my row dictionary. That leads to the following Get/Set methods inherited from DynamicObject:
public override bool TryGetMember(GetMemberBinder binder, out object result)
{
if (dic.ContainsKey(binder.Name))
{
result = dic[binder.Name];
return true;
}
result = null;
return false;
}
public override bool TrySetMember(SetMemberBinder binder, object value)
{
if (dic.ContainsKey(binder.Name))
{
dic[binder.Name].Value = value;
return true;
}
return false;
}It seems to work well, there is no crash and it displays correctly (the concerned cells are empty).
However in my XAML Binding Failures, I have a bunch of these:
How to avoid this?
Thanks!
Hello,
I would like to convert select track changes inserts in to track changes delete. I have this code...
Revision rev = radRichTextBox.Document.GetCurrentRevision();But the problem is that I can only do it for the current revision (Document.GetCurrentRevision). I would like to do it for all selected revisions. Anyone out there have a solution?

Hi there,
as soon as I switch SelectionUnit to something different than "FullRow", the current cell focus is no more jumping down to the next cell when I press the enter key.
I'm replacing the plain old WPF default DataGrid in some application right now and I need to have the RadGridView (2015.1.225.45) act in the same way as the default DataGrid! I already tried to use IKeyboardCommandProvider but it does not work. I can debug into the provider code and everything seems to be arranged correctly (the commandsToExecute list), but it seems like the GridView does not know what to do with these commands...
So, how can I get the default enter key pressed behaviour only with SelectionUnit "Cell" and SelectionMode "extended"?
Cheers,
Marcel