When creating a composite filter descriptor with a value that contains an array of enums, it generates an expression with IN, and an exception is thrown when adding it to the FilterDescriptors on a RadGridView control.
Exception Message:
{"The expression contains undefined function call In()."}
The expression value is: ([RandomPropertyName] IN (1,3,9) OR [RandomPropertyName] = 10)
We have recently upgraded from 2015.2.728.40 (where this worked) to the Feb. 2019 version, then today upgraded to the May 2019 version. The issue remains.
The project includes the following Telerik references:
Telerik.WinControls
Telerik.WinControls.GridView
Telerik.WinControls.PdfViewer
Telerik.WinControls.RadDock
Telerik.WinControls.RadMarkupEditor
Telerik.WinControls.UI
Telerik.Windows.Documents.Core
Telerik.Windows.Documents.Fixed
Telerik.Windows.Zip
TelerikCommon
You can use the following code snippet and follow the steps from the provided gif file:
public RadForm1()
Workaround:
private void RadDropDownButton1_DropDownOpening(object sender, EventArgs e)
Use attached to reproduce.
- In the excel-like filter popup unselect 0.1, 0.2, and 0.3 and then click "Fork"
- When the layout is loaded the values are changed to 1, 2, and 3.
Workaround:
Change the culture before saving/loading the layout.
To reproduce:
- Open The popup
- Click on it, and then click on the form
- Repeat until the popup stays opened
Hello,
I have already used your ItemFormatting event in my code and implemented it the same way you have provided.
In my code, i have created 7-8 messages and fixed the first msg's timestamp to "6/6/2019 11:53:08 AM" and the remaining messages with timestamp of 2 minutes more than this time. Whenever the event is triggered i wrote a code which compares the timestamp of my message with this timestamp "6/6/2019 11:53:08 AM". Conditionally only the first message falls in this condition and i paint it red, which works well for first time (On load) and then when i scroll my chat, the event unnecessarily paints the remaining msgs too, which should not happen.
I am attaching my .cs file with designer please refer to it, and resolve this asap. Looking forward to your response.
Thanks.
Steps to reproduce:
1) Add a RadForm with 3 buttons. Apply Fluent Theme to all.
2) In the click handler of the first two buttons, set enable to false for the button that was clicked. Third button, do nothing.
3) Run app. Click all 3 buttons.
Desired Result:
Focus indicator should be hidden for previous-focused but now-disabled controls.
Actual Result:
Blue Fluent focus-indicator border is still showing (my user's are confused and complaining), see attachment.
[May happen on other themes too, didn't check.]
Had to implement a work-around...
Work around:
Set border element to off for every programmatically disabled control: this.radButton1.ButtonElement.BorderElement.Visibility = ElementVisibility.Hidden;
Use attached to reproduce.
Type "Christoff" and scroll down.
Workaround:
public RadForm1()
ChildRowHeight can be set on the main table element of the control like this:
this.radGridView1.TableElement.ChildRowHeight = 750;
When the grid is in a hierarchy and a parent row is expanded, the inner child template will create a new table element and its ChildRowHeight is 205 which is the default value. It would be expected that the height of the inner table element is initially set as the height of the main table element of the control.
A possible workaround is to handle the ChildViewExpanded event of the grid this way:
private void RadGridView1_ChildViewExpanded(object sender, Telerik.WinControls.UI.ChildViewExpandedEventArgs e)
- Add RadRibbonForm - Set the radRibbonBar1 RightToLeft property to YES at design time - Close the designer and open it again -> another ribbon is showing up Workaround: done set the ribbon's RightToLeft property, just set the RightToLeft property of the form itself.
Accelerator Key is working but not underlined (underline is enabled in windows 10 and visible in other applications).
Telerik.WinControls.UI, Version=2019.1.117.40