I just saw and testing the new layout control and it is wonderful.
I am wondering is there a way to save properties like width, height, text, etc... of the embeded controls along with SaveLayout of the layout control.
It would be great functionality.
Regards,
Simeon
I need your help.
When Pageview's View Mode is set to Backstage mode, nothing happens when the Close button is clicked.
Is this normal?
If not, what should I do?
The button's enable attribute is True and the Visible attribute is also Visibility.
However, the Close Button does nothing.
I would be grateful if you could let me know how it works.
Expect a quick answer.
Hi,
There is a single gridview control place in my application winforms with default RowCount set to 5, where user allows to create new row of record more or less than that. For example there's possible to have situations where number of rows in grid is 10 but only 8 rows were filled with data. Is there any control build-in function which return me the number of rows with data filled directly? Not in good luck to find one either from online references.
Thanking in advance.
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
If
End
Sub