
Hello,
we discovered an issue when having a TileList-Control inside a TileView. The reorder doesn't work, the items just disappear...
Please look at the following example code:
<Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <!-- reorder works like a charm --> <telerik:RadTileList Grid.Column="0"> <telerik:Tile TileType="Single" Background="#FF00A100" Content="A"/> <telerik:Tile TileType="Double" Background="#FFA10000" Content="B"/> <telerik:Tile TileType="Single" Background="#FF0000A1" Content="C"/> </telerik:RadTileList> <!-- reorder doesn't work --> <telerik:RadTileView Grid.Column="1"> <telerik:RadTileList> <telerik:Tile TileType="Single" Background="#FF00A100" Content="A"/> <telerik:Tile TileType="Double" Background="#FFA10000" Content="B"/> <telerik:Tile TileType="Single" Background="#FF0000A1" Content="C"/> </telerik:RadTileList> </telerik:RadTileView> </Grid>I just upgraded to the latest release of UI for WPF (2018.3.blah blah). So far everything has been working fine. But today I invoked a bit of my code that uses RadOpenFolderDialog. The code is pretty simple:
var dlg = new RadOpenFolderDialog
{
InitialDirectory = Settings.LibraryFolder,
Multiselect = false,
};
(I have verified the "Settings.LibraryFolder" points to a valid, existing folder at the time this function is called)
It then throws an exception. The outer exception message is this:
"Provide value on 'System.Windows.Markup.StaticResourceHolder' threw an exception."
The inner exception message is this:
"Cannot find resource named 'BreadCrumbBarItemCustomStyle'. Resource names are case sensitive"
I do not now, nor have I ever had a resource of that name so I have to assume this is something inside the Telerik release that was inadvertently removed. Can you help me?
I don't know if it is relevant but early on in my app I use the StyleManager to set an application theme
StyleManager.ApplicationTheme = new Windows8TouchTheme();
Also I am *NOT* using the "NoXaml" approach
Help...?

(This is a duplicate of a thread I accidentally started in the wrong subforum here: https://www.telerik.com/forums/latest-ui-for-wpf-release-throws-exception-when-using-radopenfolderdialog)
I just upgraded to the latest release of UI for WPF (2018.3.blah blah). So far everything has been working fine. But today I invoked a bit of my code that uses RadOpenFolderDialog. The code is pretty simple:
var dlg = new RadOpenFolderDialog
{
InitialDirectory = Settings.LibraryFolder,
Multiselect = false,
};
var res = dlg.ShowDialog();
(I have verified the "Settings.LibraryFolder" points to a valid, existing folder at the time this function is called)
It then throws an exception. The outer exception message is this:
"Provide value on 'System.Windows.Markup.StaticResourceHolder' threw an exception."
The inner exception message is this:
"Cannot find resource named 'BreadCrumbBarItemCustomStyle'. Resource names are case sensitive"
I do not now, nor have I ever had a resource of that name so I have to assume this is something inside the Telerik release that was inadvertently removed. Can you help me?
I don't know if it is relevant but early on in my app I use the StyleManager to set an application theme
StyleManager.ApplicationTheme = new Windows8TouchTheme();
Also I am *NOT* using the "NoXaml" approach
Help...?
I have combined RadAutoCompleteBox with Combobox with multiple selection mode. When I select item from drop down of combobox the item gets added in the autocomplete box and the remaining portion of autocomplete box will be used for searching. But in this case I am not able to select the added items.
See attached screenshot, here the 2 items which are already added named TestPalga2 and TestPalga3 cant be selected. I want these items to select and remove on delete button press of keyboard.

I'm re-visiting our previous approach to create an arrow annotation, as our current one is clunky - a line with a shape appended to the end of it to emulate an arrow. It doesn't scale well with zooming in and out and our QA folks are asking for a better implementation.
Is there any add-on widget to achieve an arrow annotation in a RadCartesianChart ?
Is there a newer Chart that has arrow annotations built in ?
Thanks,
Barry
I have a project which is using a base class (called Job) and two derived classes (Hire & Sales) - which share a lot of properties. When I add a string property to Hire and bind to that column in a gridview - the filtering icon doesn't appear above the column, however it works fine on when I bind to the base class - I've read that perhaps this is because it can't determine the datatype, but it is just a string.
This is a xaml example of two columns, next to each other, the first column displays the filter icon (SiteLocation is held within base class), the second column (SiteLocation1 held in Hire class) doesn't - they both show the correct data.
<telerik:GridViewDataColumn Header="Location" UniqueName="Location" DataMemberBinding="{Binding ScheduleItemJob.SiteLocation}" HeaderCellStyle="{StaticResource GridViewHeaderCellStyle}" IsReadOnly="True" CellStyle="{StaticResource GridViewCellStyle}"/><telerik:GridViewDataColumn Header="Location1" UniqueName="Location1" DataMemberBinding="{Binding ScheduleItemJob.SiteLocation1}" HeaderCellStyle="{StaticResource GridViewHeaderCellStyle}" IsReadOnly="True" CellStyle="{StaticResource GridViewCellStyle}"/>
I'm trying to disable moving a child shape of a RadDiagramContainerShape by override DraggingService as below:
public class MyDragging : DraggingService { private readonly RadDiagram diagram; public MyDragging(RadDiagram graph) : base(graph as IGraphInternal) { this.diagram = graph; } public override void Drag(Point newPoint) { if (this.DraggingModels.FirstOrDefault().ParentContainer != null) { return; } else { base.Drag(newPoint); } } }It does make the child shape immovable. However, after I dragged the child shape, it will be removed from the parent container shape. (subShape.ParentContainer will be null). Then, when I drag the child shape again, it can be moved.
How to fix this issue?