Hi,
I am using Telerik WinForms UI controls, Version - "2016.2.503.40" (Telerik.WinControls).
Facing a weird issue with GridView control version - "2016.2.503.40" (Telerik.WinControls.GridView)
When data or records are not available on the grid I am showing "No records available" text using below code lines,
myGridView.TableElement.Text = "No records available";
which works fine Attached screen "01_NoRecordsAvailable.JPG".
When some other window gets pop-up on this screen, "No records available" text disappears.
refer Attached screen "02_NoRecordsAvailable_Disappears.JPG".
No able to find out why the text is getting disappeared in such scenario.
Any help will be highly appreciated.

After bind the DropdownList with datatable, I set the Text of the DropdownList in code, if the Text match one of element of the datatable, the SelectedValue should changed at the same time, in my case, it is not, I need to click the DropdownList to change the SelectedValue.
Anything I can do to sync the action that I get the right SelectedValue when I set Text match one of element of the datatable?

Hello,
I will have a short intro explaining why i need that (maybe you can find an alternative) you may skip and go to the code.
i have a scenario like the folowing example:
There is a List of objects, its properties are unknown at compile time (dynamic objects built from database), say these objects only have one property, called ExpireDate.
The user is presented a list of objects (with their expiredate and maybe other properties).
The user wants to change the expiredate for many of these objects to a specific date, the program will let the user select all the objects that need to be changed and edit the expiredate value in one shot.
After the user selected the objects to be changed, the UI will show the user a label and a control for each property:
in our case the control to handle the datetime will have a gray background and a null value if the selected objects have different ExpireDate, will have a white background when the selected objects have all the same ExpireDate value. This way the user knows, looking at a control, if it is blank because all objects have null value or it is blank cause some objects have different values.
Said that, after some work, this was the prototype code:
private void InitializeControlsBackground(){ foreach (var c in panel.Controls.OfType<Control>()) { if(EditorModel.GetProperties().OfType<MultiElement.MultiEditPropertyDescriptor>().Any(a=> a.Name == c.Name)) { Color bg = EditorModel.HasManyValues(c.Name) ? Color.Gray : Color.White; c.BackColor = bg; } }}the problem is that for some controls the background color changes, but for (example) raddatetimepicker the background color does not change, how can I change the background color for the raddatetimepicker?
Best regards
Andrea

Hello everyone,
When I run the RadTextBox Control program,I select the content of the control RadTextBoxControl,right-click will show copy,paste and other content,
how to copy,paste and change the text showing different languages. Reference picture RadTextBoxControl.jpg

Hello everyone.
When I use the RadGridView control, the left-most column of my table is empty. I want it to be the number 1, 2, 3... that generates the automatic sequence. How to set up to achieve this effect.
hi
how can disable special LegendElement ?
i want the series in enable but title is disable

I have a couple questions regarding Panorama:
s it possible to change the scroll type from horizontal to vertical
