I recently updated my Telerik UI for WPF version to 2017.1.117.45 and since then it seems that the property AllowFinish of the RadWizard is ignored (and possibly the others Allow* properties). When I set the value of AllowFinish to False (directly or with a binding) the Finish button is always enabled.
Could you confirm if this is a bug like in this topic or if I might be doing something wrong? (but I think that it was working well before the update)
Thanks in advance.

All fonts which are the sub font style of a font family in c:\windows\fonts are not able to set to bold or italic( bold/Italic are not shown in richtextbox but when exported to word, they are showing correctly). Is there any solution on it?
Some examples: Arial Black, Arial Narrow, Bodoni MT Black, Bodoni MT Condensed,Calibri Light, Franklin Gothic Medium, ...

Hi,
I try to load runtime Theme but after load of my application and the window which used to show is invisible i can't find why can you help me.

This may be a long-shot as I don't see it documented anywhere, but can I omit the style tag but still trigger the CssClassExporting event. What I need is to pull the extracted styles into a separate css file. I can parse the files manually if need be, but if there is some combination of configuration options I'm missing here please correct me. Here is what i have at the moment.
HtmlFormatProvider provider = new HtmlFormatProvider();
provider.ExportSettings.DocumentExportLevel = DocumentExportLevel.Fragment;
provider.ExportSettings.StylesExportMode = StylesExportMode.Classes;
provider.ExportSettings.SpanExportMode = SpanExportMode.DefaultBehavior;
provider.ExportSettings.ExportStyleMetadata = true;
// Dont export the document styles
provider.ExportSettings.StyleRepositoryExportMode = StyleRepositoryExportMode.DontExportStyles;
// Export font style as style rather than tag
provider.ExportSettings.ExportFontStylesAsTags = false;
// Only create styles which need be
provider.ExportSettings.ExportLocalOrStyleValueSource = true;
provider.ExportSettings.CssClassExporting += ExportSettings_CssClassExporting;
var data = provider.Export(RadDocument);
Although I am not using this control in a DataForm, it is definitely derived from DataFormDataField. As you can see I am getting an exception in the Xaml designer. It compiles fine and displays fine at runtime; however it prevents the Xaml UserControl from displaying in the designer. I get many, many of these errors. Can anyone give me a hand with this?
Thanks ahead of time,
Steve
Hi,
I am trying to create a GridView with both Cell and CellEdit templates for one of the columns. The problem that I am experiencing is two fold:
1. If I bind the column AND the CellTemplate to the same property, I noticed that the IDadaErrorInfo indexer gets called twice per "Name" cell. This is a problem as the validation logic is not particularly straight forward and starts to create a performance issue once there are few dozen rows:
<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name, ValidatesOnDataErrors=True, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" />
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<TextBox Text="{Binding Name, ValidatesOnDataErrors=True, Mode=TwoWay, UpdateSourceTrigger=LostFocus}" />
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
2. Removing the DataMemberBinding from the column and keeping it in the CellTemplate works fine when it comes to displaying the data, but does not seem to work with the IDataErrorInfo. I can see the indexer get called, however I do not see the validation error reflect in the UI. Which effectively means that the validation can only be shown in CellEditTemplates:
<telerik:GridViewDataColumn>
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Name, ValidatesOnDataErrors=True, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" />
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<TextBox Text="{Binding Name, ValidatesOnDataErrors=True, Mode=TwoWay, UpdateSourceTrigger=LostFocus}" />
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
What is the correct way of setting up Cell and CellEdit template binding to display IDataErrorInfo errors in both edit and non-edit mode at all times, while not having the IDataErrorInfo indexer getting hit twice as much as it should?
Thanks in advance,
Ross