Telerik Forums
UI for WPF Forum
0 answers
159 views

Hello! Could you please help me to fix the following issue when I call _radCombobox.ToggleDropDown():


The control was found, was expanded and then this exception was thrown:


Message: 
    System.TimeoutException : Wait for condition has timed out
  Stack Trace: 
    Server stack trace: 
    WaitSync.CheckResult(WaitSync wait, String extraExceptionInfo, Object target)
    WaitSync.For[T](Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout, WaitResultType errorResultType)
    WaitSync.For[T](Predicate`1 predicate, T target, Boolean invertCondition, Int32 timeout)
    VisualWait.ForVisible(Int32 timeout)
    VisualWait.ForNoMotion(Int32 initialWait, Int32 motionCheckInterval, Int32 timeout)
    RadComboBox.WaitDropDownAnimation(Int32 millis)
    RadComboBox.ToggleDropDown()

Here is the combobox (as a part of UserControl):


<telerik:RadComboBox  x:Name="CmbAddressType" Grid.Row="1" Grid.Column="3" Grid.ColumnSpan="3">
          <TextBlock>LG Nexus 5X</TextBlock>
          <TextBlock>Huawai Nexus 6P</TextBlock>
          <TextBlock>iPhone 6S</TextBlock>
          <TextBlock>iPhone 6S Plus</TextBlock>
          <TextBlock>Microsoft Lumia 950</TextBlock>
        </telerik:RadComboBox>

Application: WPF

Testing Framework: Progress Telerik Test Studio 2021.3(213.11.3.0)

 


Vitaly
Top achievements
Rank 1
 updated question on 03 Feb 2022
1 answer
208 views

   I'm attempting to following the instructions at https://docs.telerik.com/devtools/wpf/controls/radrichtextbox/mef to improve the loading time of the RadRichTextBox control.  However the given example is in c#.  I've tried to convert that over to vb.net but I can't seem to find the right assemblies.  

For example:

RadCompositionInitializer.Catalog = new TypeCatalog( // format providers typeof(XamlFormatProvider), typeof(RtfFormatProvider), typeof(DocxFormatProvider));

trying:

Imports Telerik
Imports Telerik.Windows.Documents.UI.Extensibility

 

Dim oTest as RadCompositionInitializer.Catalog = new TypeCatalog( typeof(XamlFormatProvider), typeof(RtfFormatProvider), typeof(DocxFormatProvider))

 

RadCompositionInitializer seems to come from Telerik.Windows.Documents.UI.Extensibility, but RadCompsitionInitializer.Catalog is unknown and TypeCatalog is unknown. Anyone have success in implementing this in vb.net? Many thanks!

Tanya
Telerik team
 answered on 03 Feb 2022
1 answer
351 views

I have a linear chart that contains data from 1/4/2019 to 31/3/2020. However, the last tick is not displayed? How to always display the last tick with the corresponding label. Thanks

 

 


<telerik:RadCartesianChart
        HorizontalZoomRangeStart="0.0" HorizontalZoomRangeEnd="1.0" RenderTransformOrigin="0.5,0.5">

        <telerik:RadCartesianChart.Resources>

            <Style BasedOn="{StaticResource LineSeriesStyle}" TargetType="{x:Type telerik:LineSeries}">
                <Setter Property="CategoryBinding" Value="X" />
                <Setter Property="ValueBinding" Value="Y" />
                <Setter Property="StrokeThickness" Value="2" />
                <Setter Property="Stroke" Value="#0083A9" /> <!-- Aon blue. See: https://brandmatters.aon.com/bms/damui/index.cfm?category=1450&assetID=4993 -->
            </Style>

        </telerik:RadCartesianChart.Resources>

        <telerik:RadCartesianChart.HorizontalAxis>
            <telerik:DateTimeContinuousAxis LabelFormat="{Binding HorizontalAxisFormatString}" 
                                            SmartLabelsMode="SmartStep" />
        </telerik:RadCartesianChart.HorizontalAxis>

        <telerik:RadCartesianChart.VerticalAxis>
            <telerik:LinearAxis
                LabelFormat="{Binding VerticalAxisFormatString}"
                RangeExtendDirection="None"
                SmartLabelsMode="SmartStep" />
        </telerik:RadCartesianChart.VerticalAxis>

        <telerik:RadCartesianChart.SeriesProvider>
            <telerik:ChartSeriesProvider Source="{Binding ItemsSource}">
                <telerik:ChartSeriesProvider.SeriesDescriptors>
                    <telerik:ChartSeriesDescriptor ItemsSourcePath="Points" TypePath="SeriesType" />
                </telerik:ChartSeriesProvider.SeriesDescriptors>
            </telerik:ChartSeriesProvider>
        </telerik:RadCartesianChart.SeriesProvider>

        <telerik:RadCartesianChart.Grid>
            <telerik:CartesianChartGrid MajorLinesVisibility="XY" />
        </telerik:RadCartesianChart.Grid>

    </telerik:RadCartesianChart>

Stenly
Telerik team
 answered on 01 Feb 2022
0 answers
118 views

Hi,

            So, I have been tasked with fixing a XAML issue in RadGridView where FilterMemberPath has been set in the CustomGridViewDataColumn…This creates Custom Filter Options....

            However, the Column Header isn’t highlighting as expected when the Filter is applied…

            Is there a solution to this issue…

 


Nick
Top achievements
Rank 1
 asked on 31 Jan 2022
1 answer
207 views
After I did the update, my project compiles, but no longer runs. As soon as the project tries to open a window with a GridView on it,
I get the error: "Could not load file or assembly 'Telerik.Windows.Controls, Version=2022.1.117.45"

The thing is the current version is 2022.1.116.40. I don't see a reference to 2022.1.117.45 anywhere?
Dilyan Traykov
Telerik team
 answered on 27 Jan 2022
1 answer
143 views

Hello.

Same gridview exists in RowDetails in GridView.

I want to hide columns at the same time.
I applied the hide/show column function in the parent gridview right from the sdk example.

However, it is difficult to apply in row details.

I tested it in a slightly different way, but it didn't work.

How should I approach it?
Width column synchronization was also applied to make visible similarly, but it failed.

Thanks.

Martin Ivanov
Telerik team
 answered on 27 Jan 2022
2 answers
195 views

Hi,

Is there a way I can insert text in Hebrew and scan it?

Because by default I see that it only supports English.

Thanks.

Ohad
Top achievements
Rank 3
Bronze
Iron
Iron
 answered on 27 Jan 2022
1 answer
426 views

We have requirements to render html contents in List control (ItemsControl).  Collection source may contains upto 200 html content.

Initially we tested RadRichtextbox with HTMLFormatProvider to bind Html content. radrichtextbox along with HtmlFormatProvider works fine for small collection, but if ItemsSource has more than 100 items, we are facing performance issue. 

Therefore I replaced Telerik control with HtmlRenderer.WPF (HtmlPanel) control, which is faster compared to telerik control. HtmlPanel has flow direction issue with arabic text.

Is there any light weight telerik control that can be used to render html contents only.

Tanya
Telerik team
 answered on 26 Jan 2022
0 answers
111 views
(Edit: Please delete--I didn't realize there were other examples in the demo project)
Taylor
Top achievements
Rank 1
 updated question on 25 Jan 2022
1 answer
126 views

Hello.

I made a detail row (group) in two grid views.

Both gridview data use the same data and have different outputs.
Here, i want both gridviews to expand equally in the same row when toggled.

(Otherwise, the data can be ignored. I want extended sync on the same data.)


I tried several searches such as RowDetailsVisibilityChanged, toggle style, toggle custom enable behavior, but nothing worked.

Attach the basic data. please help.
Thank you.

Dilyan Traykov
Telerik team
 answered on 24 Jan 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
ProgressBar
Sparkline
LayoutControl
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
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?