Hi! I am seeking assistance with this column in WPF, in a RadGridView:
<telerik:GridViewDataColumn DataMemberBinding="{Binding TargetDateET, StringFormat={}{0:MM/dd HH:mm}}" Header="Target Date" />
It displays DateTime values in the grid in the following format: "MM/dd HH:mm"
The issue is that the FilterDescriptor is in this format: "MM/dd/yyyy HH:mm:ss tt"
And when the filters are saved and presented to the user, they are different.
What I can do to manage this data in the same format? (Without having to generate a new variable that is a string and that returns the correct format) Help! Thanks in advance! Juan
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