Telerik Forums
UI for WPF Forum
1 answer
128 views

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

Dilyan Traykov
Telerik team
 answered on 27 Jun 2022
1 answer
168 views

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

Vladimir Stoyanov
Telerik team
 answered on 27 Jun 2022
1 answer
127 views

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

Stenly
Telerik team
 answered on 24 Jun 2022
0 answers
210 views

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:

Radek
Top achievements
Rank 1
 updated question on 24 Jun 2022
1 answer
126 views

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

Stenly
Telerik team
 answered on 24 Jun 2022
0 answers
126 views

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

Eldoir
Top achievements
Rank 2
Iron
Iron
Iron
 updated question on 24 Jun 2022
0 answers
148 views

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?

Suzanne
Top achievements
Rank 1
 asked on 24 Jun 2022
1 answer
276 views

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!

Eldoir
Top achievements
Rank 2
Iron
Iron
Iron
 updated answer on 23 Jun 2022
1 answer
146 views

Hello,

I would like to convert select track changes inserts in to track changes delete. I have this code...

Revision rev = radRichTextBox.Document.GetCurrentRevision();
            if (rev.RevisionElements.First().ToString().Contains("Insert"))
            {
                DocumentPosition startPosition = new DocumentPosition(rev.SelectionRange.StartPosition, true);
                DocumentPosition endPosition = new DocumentPosition(rev.SelectionRange.EndPosition, true);
                radRichTextBox.AcceptRevision(rev);
                this.radRichTextBox.Document.Selection.SetSelectionStart(startPosition);
                this.radRichTextBox.Document.Selection.AddSelectionEnd(endPosition);
                radRichTextBox.Delete(true);
            }

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?

Tanya
Telerik team
 answered on 23 Jun 2022
2 answers
216 views

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

Jonas
Top achievements
Rank 1
Iron
 answered on 23 Jun 2022
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?