Having an issue displaying images in a radRichTextBox. Below is my HTML.
I have using an HTMLDataProvider to bind to a string that contains this HTML below.
The image does not display, all I get is this little box for the image.
The text all displays fine above it.
<head>
<link rel="stylesheet" href="../style.css" />
</head>
<p><strong>Section Header</strong></p>
<p><strong>Section Text</strong> This is my Description section</p>
<p><strong>Picture Title</strong></p>
<p><img src="../LocalFolderParent/Images/MyImage.png" alt="Figure 1 - Test 3" /></p>
After installing release 2022.2.511, the distinct filters of our grid views stopped working. We are using popup filters in a custom class with both distinct checkboxes and field filters visible. Clicking on any distinct checkbox and then clicking Apply Filter button would always filter the grid, but after the 2022.2.511 release, clicking on distinct checkboxes and clicking Apply Filter now does nothing but close the filter popup with no effect to the results. However, if the EnableDistinctValuesFiltering property is set to true, and some text is typed in the distinct search text box, and then the checkbox is checked and Apply Filter is clicked, the filtering works.
Is there some breaking change that was made that we should know about when dealing with distinct filters in the custom popup? Is there any settings that we can try to help resolve this issue?
Thanks, Bob
I created a class with CommunityToolkit.Mvvm package and use ObservableProperty to create properties for this class. But the PropertyGrid control does not recognize properties created in this way. Are there any way PropertyGrid can support ObservableProperty?
using CommunityToolkit.Mvvm.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Test
{
public partial class DrawingModel : ObservableObject
{
public string Name { get; set; }
[ObservableProperty]
public double _length;
[ObservableProperty]
public double _width;
[ObservableProperty]
public double _height;
}
}
Please see attached image. What could be the cause of this? Some Fonts missing?
I'm using StyleManager for Theming.
Telerik.Windows.Documents.FormatProviders.OpenXml.Docx.DocxFormatProvider provider = new Telerik.Windows.Documents.FormatProviders.OpenXml.Docx.DocxFormatProvider(); RadDocument document = new RadDocument(string myXAMLString); byte[] output = provider.Export(document);