Hi
I am creating a number of DocumentWindows inside a radDock container. I want to be able to drag them around the radDock, but do not want them to be dragged outside of the radDock. Is there a way to do this?
Regards
Chris
I use the following code to create button dynamically. Please how can I save the button so that it will appear on next run? I have been looking for a solution and could not find one.
Dim count As Integer = RadLayoutControl.Controls.OfType(Of Button).ToList.Count
Dim button As Button = New Button
button.Size = New System.Drawing.Size(RadSpinEditor1.Value, RadSpinEditor1.Value)
button.Name = "btnDelete_" & (count + 1)
button.Text = "test"
RadLayoutControl.Controls.Add(button)

Hi,
I'm following this approach here
https://docs.telerik.com/devtools/winforms/controls/gridview/hierarchical-grid/hierarchy-of-one-to-many-relations
to use a grid with two child templates. It works as documented; the two child templates are arranged in a tab folder. Is it possible to change this?
I'd rather have the two child sets getting arranged below each other. So that after expanding the master row, the user could scoll over the first set of child rows and then the second set of child rows.
Thanks,
Mike

Hi,
I have GridviewColorCoumn in my Gridview.
1) I want to hide Color code Textbox in Editor Section.
OR
2) I want to Show Hex formatted Color code. Currently shows Argb Color code.
Please check attached file.
Waiting for your favourable respose.
Thanks

In Telerik report.
Showing unwanted white space below row in crosstab wizard
how to clear those unwanted space
please go through the attached file.

Hello!
I'm facing an error that I'm loading items from a Query in a Database using TableAdapter method. A list of items loads in the CB and data is updated by selecting from the CB. When last item is left in CB, by selecting the item, it don't trigger the index and the application (item) in CB don't loads the data. So, for this, I've decided to add new Empty or Dummy row in CB that it able to trigger index change and load the data.
My Code is:
Private Sub FwdDocQuery_SelectedIndexChanged(sender As Object, e As EventArgs) Handles FwdDocQuery.SelectedIndexChanged StatusIDRadTextBox1.Text = "2" If Not String.IsNullOrWhiteSpace(FwdDocQuery.Text) Then Dim index As Integer = ApplicationsBindingSource.Find("ID", FwdDocQuery.Text) If index > -1 Then ApplicationsBindingSource.Position = index End If End If If DocTypeIDRadTextBox1.Text = "1" Then DocTypeTBFWD.Text = "Transcript" ElseIf DocTypeIDRadTextBox1.Text = "2" Then DocTypeTBFWD.Text = "Degree" ElseIf DocTypeIDRadTextBox1.Text = "3" Then DocTypeTBFWD.Text = "NOC" End IfEnd Sub


Hi,
I am using pageview in Explorer Bar and Stack Mode and i want to have an arrow sign on tabs which shows the selected tab. please see the attached image for further clarification.
Regards
Saud