Telerik Forums
UI for WPF Forum
4 answers
136 views

Hello,

we are using the RadTileView-Control in our project.

After upgrade to Telerik Version 2019.1.220, an exception is thrown at each startup.

System.Windows.Markup.XamlParseException: Must create DependencySource on same Thread as the DependencyObject

We are using implicit styles (NoXaml version) with an active fluent style. Other styles (Crystal, etc.) seem not to be affected.

Please help!

regards,

Tobias

Yoan
Telerik team
 answered on 04 Apr 2019
2 answers
492 views
How can I configure the RowDetails to open only when I click on the plus symbol and not on the whole row ?

<telerik:RadGridView Grid.Row="0"
                             Name="DmsBatchRadGridView"
                             KeyDown="DmsBatchRadGridView_OnKeyDown"
                             RowDetailsVisibilityMode="VisibleWhenSelected"
                             Filtered="DmsBatchRadGridView_OnFiltered"
                             ItemsSource="{Binding CollectionViewDmsBatch}"
                             AutoGenerateColumns="False">
            <telerik:RadGridView.Columns>
                <telerik:GridViewToggleRowDetailsColumn ExpandMode="Multiple" />
                <telerik:GridViewDataColumn Header="Batch ID" IsReadOnly="True"
                                            DataMemberBinding="{Binding SYSDMSBATCH}" />
                <telerik:GridViewDataColumn Header="Request Datum" DataMemberBinding="{Binding REQDATE}"
                                            IsReadOnly="True"
                                            DataFormatString="dd.MM.yyyy" />
                <telerik:GridViewDataColumn Header="Request Zeit"
                                            IsReadOnly="True"
                                            DataMemberBinding="{Binding REQTIME, Converter={StaticResource ClarionTimeToDateTimeConverter}}"
                                            DataFormatString="HH:mm" />
                <telerik:GridViewDataColumn Header="Fehler / Akte" IsReadOnly="True"
                                            DataMemberBinding="{Binding FehlerProAkte}" />
                <telerik:GridViewDataColumn Header="UseCase" IsReadOnly="True" DataMemberBinding="{Binding Method}" />
                <telerik:GridViewCheckBoxColumn Header="Retry"
                                                EditTriggers="CellClick"
                                                AutoSelectOnEdit="True"
                                                DataMemberBinding="{Binding RETRYONEERROR, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource IntToBoolConverter}}" />
                <telerik:GridViewCheckBoxColumn Header="Ignorieren"
                                                UniqueName="IgnoreColumn"
                                                EditTriggers="CellClick"
                                                AutoSelectOnEdit="True"
                                                DataMemberBinding="{Binding IGNORONEERROR, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, Converter={StaticResource IntToBoolConverter}}">
                    <telerik:GridViewCheckBoxColumn.HeaderCellStyle> ....................


Dilyan Traykov
Telerik team
 answered on 04 Apr 2019
4 answers
213 views
Hi!

When creating a Rad Diagram shapes (Rectangle, Circle etc..) with "No fill" [only outline] Is it possible to make it selectable only by the outline, rather than selecting it inside the shape? [Same Behaviour as Microsoft PPT].

~ We Can add the Cursor behavior for the entire rad diagram but not for the outline/inside the shape.

I've added a screenshot demonstrating the behavior.


Thanks!
Martin Ivanov
Telerik team
 answered on 04 Apr 2019
1 answer
190 views

Hi,

is there an out of the box solution for the RadMap to use the EPSG:31467 map projection?

So far we use a custom OSM Source but now a new customer wants to use his own tile provider using EPSG:31467.

We already know how to use our own provider but are there built in functions to transform the data for the override in GetTile( int tileLevel, int tilePositionX, int tilePositionY ) for example?

 

Thanks, 

Margret

Martin Ivanov
Telerik team
 answered on 04 Apr 2019
3 answers
349 views
Hello, I have the following question:
When I mark a cell from the grid and without releasing the left mouse button I pull out cell selection is obtained.
However, when doing the following, the selection does not work:
Mark a cell, release the left mouse button, press the left mouse button again on the selected cell and move the mouse do not select other cells.
How can I do this behavior?
Isabelle
Top achievements
Rank 1
 answered on 04 Apr 2019
3 answers
610 views
How to remove the white vertical line which is present in gridview header row, row and footer row. This vertical line can be moved.
Please see attachment
Dinko | Tech Support Engineer
Telerik team
 answered on 04 Apr 2019
8 answers
1.1K+ views
How can we change the busy indicator size? Changing the Height and Width only changes the size of some outer border but the indicator itself remains the same size...
Tristan
Top achievements
Rank 1
 answered on 03 Apr 2019
4 answers
318 views

Hello, I am trying to bind the items of my RadTreeView to IsSelected and IsExpanded but when I use all my items are not visible in the tree.

I use it like this:

<telerik:RadTreeView.ItemContainerStyle >
         <Style TargetType="telerik:RadTreeViewItem">
             <Setter Property="IsSelected" Value="{Binding IsSelected}" />
             <Setter Property="IsExpanded" Value="{Binding IsExpanded}" />
         </Style>

I tried to add to the style BasedOn="{StaticResource RadTreeViewItemStyle}" but I received warning that the style cannot be resolved, how can I use it?

Svetoslav
Top achievements
Rank 1
 answered on 03 Apr 2019
4 answers
1.8K+ views

Is there any way to hide a cell's tool tip when it's defined at the column level like so?

When ToolTipValue is null or empty, the tool tip still comes up, just without any content. I'd prefer if it wasn't displayed at all.

<telerik:GridViewDataColumn DataMemberBinding="{Binding CellValue}">
    <telerik:GridViewDataColumn.ToolTipTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding ToolTipValue}" />
        </DataTemplate>
    </telerik:GridViewDataColumn.ToolTipTemplate>
</telerik:GridViewDataColumn>
Dilyan Traykov
Telerik team
 answered on 02 Apr 2019
2 answers
162 views

Hi, 

I'm using RadRibbonWindow in my WPF application and in Loaded event of the window I'm showing a dialog/messagebox, but the problem is that when I launch the application the main radribbonWindow doesn't show up until all interrupts/events executed from Loaded event are resolved. Why is that I want to show both simultaneously when I launch the application. 

<RibbonWindow x:Class="DynamicToolbarItems.MainWindow"

                xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                Title="MainWindow"
                Height="350" Width="525"
                Loaded="Window_Loaded">

/*******************************code behind *************************************/

 private void Window_Loaded(object sender, RoutedEventArgs e)
 {

 

System.Windows.MessageBoxResult result = System.Windows.MessageBox.Show("All Changes will be lost?", "message,                    System.Windows.MessageBoxButton.YesNo, System.Windows.MessageBoxImage.Question);

        }

 

 

Martin Ivanov
Telerik team
 answered on 02 Apr 2019
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?