I have a worksheet with a lot of protected cells that cannot be edited. I want the cells to be protected but I don't need a warning to popup everytime the user tries to edit a protected cell. I would prefer to not have any warning display and just have the action silently fail.
Is there anyway to suppress the error dialog when the user tries to modify one of these protected cells?
Hi,
I use the Radmap Control for Displaying Floorplans which has no Coordinates.The floorplans are available in Maptiles so I implemented a custom map provider.
https://docs.telerik.com/devtools/wpf/controls/radmap/how-to/howto-custom-provider
The plan will now be displayed but it will be repeated infinitly. How can I prevent that?
best regards
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
<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> ....................
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
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?