Hi,
How can I change the default blue color on the bars in the outlook template?
<telerik:GridViewCheckBoxColumn Header="Accepted" MinWidth="75" MaxWidth="75" DataMemberBinding="{Binding IsAccepted, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" AutoSelectOnEdit="True" EditTriggers="CellClick"/>
While saving the filter descriptors of the gridview (i.e. serializing the gridview to an xml using the PersistentManager.Save(radgridview)), the persistent manager is unable to save the value of the distinct filter value of type DateTimeOffset.
Here is the part of xml serialization of the SelectedDistinctValues of FilterDescriptors with type DateTimeOffset on radgridview.
<PV Key="254" TypeKey="-933998283">
<Value xsi:type="DateTimeOffset" />
</PV>
which should Ideally be as follows:
<PV Key="254" TypeKey="-933998283">
<Value xsi:type="DateTimeOffset"> 12/8/2018 11:25:59 AM +00:00 </Value>
</PV>
This issue is observed on 2017.2.614.45 version.
Can you please provide your insights and resolve this issue?
I'm using UI for WPF 2018.3.1016.
In the Crystal theme, the RadPasswordBox.IsTabStop property defaults to False. This is different than in the other themes I've tried (Material, Expression_Dark), where it defaults to True.
In the Material theme, the RadPasswordBox's watermark foreground is different than the color of the RadWatermarkTextBox's. It's obvious when you have both controls visible in the same UI, such as in a login form.
Thx,
Pat
Hi,
I'm running into this problem: I have a Wizard with some pages. If I place these pages directly into the Wizard in XAML, everything works well. However, as I wanted to manage the pages in a cleaner manner, I created and designed each page like a UserControl - I create a UserControl, change its base class to telerik:WizardPage, and design the page in it. Unfortunately pages created this way does not show in the Wizard.
Is this a bug or by design? What's the best practice to manage a Wizard with many pages, with each of which has its own complex logic?
When I open WPF designer to preview design I always have exception "InvalidOperationException: 'RadComboBox' TargetType does not match type of element 'NumberComboBox'."
I think, we have problem with controls in the Properties window.
Hi,
I know importing HTML does not support inserting merge fields automaticaly but in simple loop we can do it in code.
As you can see, we selecting text like {MERGEFIELD NAME} and inserting new merge field. It is working fine, and highlight fields or preview results works correct. The only problem is, when I set some styles in text before merge field, save html and then loads it again, mergefield is going to inherit these styles. This situation is illustrated on screenshots. I set color for second line, then after my InsertMergeFields method inserts all fields, the second line has style from first line, and the third line has styles from second.
It looks like a default behavior from document editors, when caret is placed after red text, next letter will be also red, but can I do something with this?
public
static
void
InsertMergeFields(RadDocument radDocument)
{
foreach
(var mergeField
in
new
DocumentTextSearch(radDocument).FindAll(
"{MERGEFIELD.*?}"
))
{
mergeField.SetSelection(radDocument);
var fieldCode = GetFieldCode(radDocument.Selection.GetSelectedText());
radDocument.InsertField(
new
MergeField() { PropertyPath = fieldCode }, FieldDisplayMode.Code);
}
}
Hi,
I am using RichTextBox in LayoutMode="Flow" and Padding="10". It is working when writing new content, but one of application user copied some content from another editor (maybe MSWord, I dont know) and the padding is gone. Well, it looks like a padding but when exporting this document to xaml or html, the Indent property for this spans is -97.005. Can I prevent from this situation?
As you can see on screenshots, the Indent is set to minus value and richtextbox even when padding is set to 10 does not take this into account.
Hello,
If I want to use telerik's FileDialog, what references do I need to add?
What Settings are required if FileDialog also implements the Fluent theme?
When the RadOpenFileDialog is started, how do we blur the content behind it