Hello!
I was trying to use Sorting/Filtering/Grouping while using VirtualMode by using the default properties and methods and wasn't able to. I found this that said "In the future editions of RadGridView, we have planned to implement virtual grouping operations with a simpler and more useful API." in the year 2009. Have there been any changes? Can i use the functionalities that i want while using VirtualMode without having to override and subscribe several events to workaround this problem?
JP
I have a customer that when adding new records to my data grid doesn't want the records to disappear until the grid is refreshed.
For example, in the screen shot, the user has filtered the rows to State Program = "AK FFS" and NDC = "42543-003-01". The user want to see the existing values while creating the new record i.e., NDC 42543-003-02. When the user enters all the fields and the record gets added it disappears because of the current filters applied. Is there a way to by-pass the filters on the newly added rows?
Appreciate any advise.
Hi,
Is it possible to override the colour and width of the horizontal drag / drop visual cue? If so can you give me an example ?
Cheers
Toby
private void RadGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
e.CellElement.DrawFill = true;
e.CellElement.BackColor = Color.Orange;
e.CellElement.NumberOfColors = 1;
e.CellElement.BorderColor = Color.Yellow;
e.CellElement.BorderWidth = 3;
e.CellElement.DrawBorder = true;
e.CellElement.BorderBoxStyle = Telerik.WinControls.BorderBoxStyle.SingleBorder;
e.CellElement.BorderGradientStyle = Telerik.WinControls.GradientStyles.Solid;
}
private void RadGridView1_RowFormatting(object sender, RowFormattingEventArgs e)
{
e.RowElement.DrawFill = true;
e.RowElement.BackColor = Color.GreenYellow;
e.RowElement.NumberOfColors = 1;
e.RowElement.BorderColor = Color.Aqua;
e.RowElement.BorderWidth = 3;
e.RowElement.DrawBorder = true;
e.RowElement.BorderBoxStyle = Telerik.WinControls.BorderBoxStyle.SingleBorder;
e.RowElement.BorderGradientStyle = Telerik.WinControls.GradientStyles.Solid;
}
e.RowElement.Padding = new Padding(20,20,20,20);
e.RowElement.Margin = new Padding(20,20,20,20);
e.CellElement.Margin = new Padding(10, 10, 10, 10);
When RadNavigationView is in Compact mode, I'd like to change the background color of the popup that displays the subpages of a main element. I thought the setting radNavigationView1.NavigationViewElement.Popup.BackColor would do it, but this changes nothing.
Where are the settings to change colors and fonts for the popup?
Hello.
As far as I know, the last version of Telerik JustDecompile is "2024.1.131.0". Is version 2024.1.131.0 free from CVE-2024-0219? And is it a version after 2024 R1?
CVE-2024-0219
In Telerik JustDecompile versions prior to 2024 R1, a privilege elevation vulnerability has been identified in the applications installer component. In an environment where an existing Telerik JustDecompile install is present, a lower privileged user has the ability to manipulate the installation package to elevate their privileges on the underlying operating system.
Hi
I have a GridView with a hierarchy consisting of a second level connected via a manual relation and a template.
Overall it works fine. But I have SortDescriptors defined for the MasterTemplate and other SortDescriptors for the second template.
The first level is sorted as defined, the second level is not sorted at all - although the sort arrows appear correctly in the header of the lower level rows.
The user can change the sorting manually at runtime, that works fine.
Is this an error or might I be doing something wrong?
Hi,
in VirtualGrid, if I use CTRL+X or "Cut" in the default context menu, the "Copying" event handler is fired.
I'm able to customize the context menu and add a specific callback for the "Cut" button.
But is there a way to understand if the "Copying" event handler is fired after the CTRL+X or CTRL+C shortcut? (I'm using the 2024.5.514.48 UI for Winforms version)
Thank you,
Emanuele