When Static header are enabled and few columns are fixed,
Scenario:
1.If the Start and End Dates range are more than 1 month, the data is not exactly aligned with the Header dates after scrolling towards right.
2.If filter is applied, then the footer is displayed at very bottom.
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;
}
}