Hi - I need some help with rad panel borders in a WinForm. I understand from other threads that the way to get a panel's borders to disappear is to set the PanelElement.PanelBorder.Visibility to "Collapsed". This causes the border to disappear just fine, but it also affects the parent panel by making its borders disappear too. See the attached image for how it looks.
Is there a way for me to get the child panels to have no border but also not affect the parent panel? I want that border to remain as it is.
Side note: I have the two child panels inside the parent and set them to Dock left so that when the left control isn't needed that panel can be set to invisible and the panel containing the remaining controls will move to the left.
Thanks.
I have added a custom column with a radSplitButton to my grid. When a button item is clicked, I would like to get the value from another cell in the row, delete the current row and delete other rows in the grid. I raise an event when a button item is clicked. I tried using the following code to subscribe to the event but the cellelement is nothing at this point. What is the best way to subscribe to the event?
Private Sub dgvReconcile_CreateCell(sender As Object, e As Telerik.WinControls.UI.GridViewCreateCellEventArgs) Handles dgvReconcile.CreateCell
Try
If e.Column IsNot Nothing AndAlso Not e.CellElement Is Nothing Then
If e.Column.Name = "CreateNew" AndAlso (TypeOf e.Row Is GridDataRowElement OrElse TypeOf e.Row Is GridNewRowElement) Then
Dim myElement As SplitButtonCellElement = DirectCast(e.CellElement, SplitButtonCellElement)
AddHandler myElement.NewClicked, AddressOf btnCreateNew_Click
End If
End If
Catch ex As Exception
MsgBox(ex.ToString)
End Try
End Sub​




Hello, is it possible to modify the calculator?
For example, I only want to have a num pad without memory and calculation buttons.
At the moment, I only can disable or hide the buttons. But that is not very nice.
Thanks for your help!

Hi Telerik,
I use the RowFormatting Event to change the bordel color of the parentrow when childrows are expanded, here's my code :
private void GridEmployeRenard_RowFormatting(object sender, Telerik.WinControls.UI.RowFormattingEventArgs e) { if (e.RowElement.RowInfo.IsExpanded) { e.RowElement.BorderColor = RowExpandedColor; // RowExpandedColor is set above in the code } else { e.RowElement.ResetValue(Telerik.WinControls.UI.LightVisualElement.BorderColorProperty, ValueResetFlags.Local); } }However when the row losts focus, the bordercolor is reset.
I need the rowBorderColor keeps the RowExpandedColor value until the row is collapsed by the user.
Any idea to do that please ?
Regards.
The documentation says multi-select is possible, even gives examples here: http://www.telerik.com/help/winforms/dropdown-and-listcontrol-dropdownlist-selection.html
I am using version 2015.3.1104.40 version of Telerik.WinControls for WinForms (I recently upgraded to the latest version).
I don't see this property anywhere under drop down list, nor does it come up in intellisense.

Since the latest Update (Nov 2015) I run in all my implementations for LOD (RadTreeView) into an endless loop (stack overflow exception).
I've checked my implementation and even if I return immediately in the NodesNeeded event method - the exception is thrown.
It seems to me, that this update is buggy ... Can anybody confirm this observation or is there a problem on my side?
My implementation is very simple
LazyLoad=false
NodesNeeded += (o, e)=>{return;};
Any help is appreciated.
Thanks
