Hello,
I am using the Dock component.
I have added 3 “documentWindows”.
In each “documentWindows”:
- 1 grid
- buttons: save, cancel, create, edit and delete
- fields
I would like to disable the other “documentWindows” when I enter create, edit or delete mode.
And to re-enable them when I save or cancel.
E.g.: If I am in “documentWindows1” and click the “edit” button, then “documentWindows2 and 3” are disabled.
If I confirm or cancel, then “documentWindows2 and 3” are enabled.
Thank you for your feedback.
Translated with DeepL.com (free version)

If I have to dynamically add data to the Treemap, I'm usually clearing the items at the start of this process. Then, when I add new items in the tree map remains totally clear on the 2nd time data is loaded. The first time is fine.
I've been looking for a Refresh method but this does not assist at all.
My current codes goes something like...
With Me.treList
.Items.Clear()
If rec.RecordCount > 0 Then
Do Until rec.EOF
.Items.Add(rec("Department").ToString, CDbl(rec("TotalDepartmentStock")))
rec.movenext
Loop
End If
.Refresh()
End WithThank you in advance.
Simon
Hello everyone,
I'm encountering the following issues when using RadDock 2025 Q2. Any solutions?
1. When the main form changes, the layout doesn't auto-refresh, leaving blank space or causing docking windows to be overlapped.
2. When closing windows, the layout doesn't auto-refresh, leaving blank areas.
3. Splitter bars sometimes cannot be dragged.
4. All windows inherit from DocumentWindow (or ToolWindow) and implement IRequireServices. Window creation and construction use DI injection.
The management code used and the demo GIF are attached in the package.

I have 2 grids with drag and drop capability, one of them is just a simple grid with 2 columns, the other grid is a grid with 3 Hierarchical Templates that have 3 associated BindingSources.
How can I, when dragging and dropping from the simple grid to the hierarchical grid, determine which Template I am dragging the row to and add it to that Template/BindingSources?
I used exactly the example code you have here (https://docs.telerik.com/devtools/winforms/controls/gridview/rows/drag-and-drop), and indeed everything works.
I just wanted to understand if it's possible to know which Template the row is being dragged to and add it exactly to that Template.
Hi,
I have a requirement to show a column congtaining waiting bar dot rings in a grid view.
I have the currentcode which defines the custom cell and also the custom column
//////////////////////////////////////
// custom cell
//////////////////////////////////////
public class WaitingDotsRingCellElement : GridDataCellElement
{
private RadWaitingBarElement waitingElement;
private DotsRingWaitingBarIndicatorElement ringElement;
public WaitingDotsRingCellElement ( GridViewColumn column, GridRowElement row )
: base ( column, row )
{
}
protected override void CreateChildElements ( )
{
base.CreateChildElements ();
ringElement = new DotsRingWaitingBarIndicatorElement ();
ringElement.DotRadius = 4;
ringElement.LastDotRadius = 1;
ringElement.Radius = 10;
ringElement.ElementCount = 8;
ringElement.NumberOfColors = 4;
ringElement.ElementColor = Color.Red;
waitingElement = new RadWaitingBarElement ();
waitingElement.WaitingIndicators.Clear ();
waitingElement.WaitingSpeed = 40;
waitingElement.WaitingStyle = WaitingBarStyles.DotsRing;
waitingElement.WaitingIndicators.Add (ringElement );
Children.Add ( waitingElement );
}
protected override void SetContentCore ( object value )
{
if ( Value != null && Value != DBNull.Value )
{
if ( Convert.ToInt32 ( Value ) == 0 )
{
waitingElement.StopWaiting ();
}
else if ( Convert.ToInt32 ( Value ) == 1 )
{
waitingElement.StartWaiting ();
}
}
}
public override bool IsCompatible ( GridViewColumn data, object context )
{
return data is WaitingDotsRingColumn && context is GridDataRowElement;
}
protected override Type ThemeEffectiveType
{
get
{
// Ensures the cell inherits grid cell styling
return typeof ( GridDataCellElement );
}
}
} // WaitingDotsRingCellElement
//////////////////////////////////////
// custom column
//////////////////////////////////////
public class WaitingDotsRingColumn : GridViewDataColumn
{
public WaitingDotsRingColumn(string fileName ) : base(fileName)
{
}
public override Type GetCellType ( GridViewRowInfo row )
{
if ( row is GridViewDataRowInfo )
{
return typeof ( WaitingDotsRingCellElement );
}
return base.GetCellType ( row );
}
} // WaitingDotsRingColumnMy issue is that the properties "radius" and "element count" are not being set correctly, however other properties such as element color are being set correctly.
My grid view row height is being set to 32 via gridView.TableElement.RowHeight
In addition, how do i get rid of the "button" effect appearing in the cell background?
Kind regards
Toby

I have a hierarchical menu of RadMenuItems
Item
SubItem
SubSubItem
If I select SubSubItem, is there any way via recursion I could iterate back up the tree to the top Item menu?
I saw a post from 2013 that suggested storing references to the preceding menu item in the Tag property but I'm wondering if there is a better way now to do this?
Thanks
Carl

1. if i set MultiSelect = false;
after user click
how can i get current row and it's data
2. if i set MultiSelect = true;
after user select many rows
how can i get these rows and it's data

I use a RadDropDownList, I want to give the user the ability to search the items in the drop down so I use the default DropDownStyle = DropDown with AutoCompleteMode = SuggestAppend.
However, I want to ensure that the user selects a valid item from the list and doesn't leave random text. So I created the extension method EnsureValidSelection() below that remembers the original value, and on validation resets it to that original value if no valid value is now selected.
This works well when the ValueMember is an int. But when it's a string, it ignores the code that sets the SelectedValue.
public static void EnsureValidSelection(this RadDropDownList combo)
{
object originalValue = null;
combo.Enter += DropDownEnter;
combo.SelectedValueChanged += DropDownSelectedValueChanged;
combo.Validated += DropDownValidated;
return;
void DropDownEnter(object sender, EventArgs e)
{
originalValue = ((RadDropDownList)sender).SelectedValue;
}
void DropDownSelectedValueChanged(object sender, EventArgs e)
{
if (originalValue != null && combo.SelectedValue != null)
originalValue = combo.SelectedValue;
}
void DropDownValidated(object sender, EventArgs e)
{
if (combo.SelectedValue == null)
combo.SelectedValue = originalValue;
originalValue = null;
}
}
Hi there, I have three panels and I want to hide the centre panel - how do I do this please?
I don't want to just make it zero width - I would like to hide it totally (including the sizing handle) until I need it.
Here is what I have tried thus far...
Me.mSplitContainer.SplitPanels("panFilter").SplitPanelElement.Visibility = Telerik.WinControls.ElementVisibility.CollapsedThank you in advance.
Simon

I've got a RadRibbonForm as my main form. I'd like my users to be able to resize this form - and they can but the border is a single pixel making it nearly impossible to position your mouse over it in order to drag-and-resize.
I've tried creating my own Telerik.WinControls.UI.FormControlBehavior class called "CustomFormControlBehavior" that Inherits Telerik.WinControls.UI.FormControlBehavior with BorderWidth property that looks like this:
Public Overrides ReadOnly Property BorderWidth As Padding
Get
Return New Padding(10)
End Get
End Property
and in my main form's constructor, following InitializeComponent() I've added the following:
Dim Behavior As Telerik.WinControls.UI.FormControlBehavior = New CARMSCustomRibbonFormBehavior()
Me.FormBehavior = Behavior
The above code will not execute!
Can you help me resolve how to change the BorderWidth of my RadRibbonForm? How close was I to the solution!? :)
Kindest regards, all!
-C