
I have RadForm-derived class that I'm adding as RadDock document windows. How do I make them stay the same size as the container? Please see attachment.
The code I'm using is something like this:
var view = new MyView(rule){ Dock = DockStyle.Fill, TopLevel = false, FormBorderStyle = FormBorderStyle.None, MdiParent = this, Text = "blah",};view.Show();var wnd = new DocumentWindow {Text = "blah"};wnd.Controls.Add(view);radDock1.AddDocument(wnd);
I'm using an older version of Telerik at the moment. The version of RadDock.dll is 2017.3.912.40 and Runtime version is v4.0.30319.


I was under the assumption that any UI element you wanted to update from the Backgroundworker had to be in the ProgessChanged event. However, I have noticed, only by accident, that I have been able to update the RadLabelElement's Text property w/ in the BackGroundWorker DoWork event. Is this by design? I have not been able to find any documentation on this related to the RadLabelElement.
TIA


Hello,
is it possible to hide the filter symbol in a specific column header while excel-like filtering remains enabled?
I have to filter a specific column via some radio buttons only.
This works for me:
Private Sub rbAktiv_CheckedChanged(sender As Object, e As EventArgs) Handles rbAktivAuftraege.CheckedChanged Dim filter As New FilterDescriptor() Dim filtervalue As String = String.Empty filter.PropertyName = "oa_status" filter.[Operator] = FilterOperator.Contains filter.IsFilterEditor = True Select Case True Case sender Is rbAktivAuftraege Me.RGV_auftraege.FilterDescriptors.Clear() filtervalue = CStr("aktiv") filter.Value = filtervalue Me.RGV_auftraege.FilterDescriptors.Add(filter)End SelectBest Regards,
V. Adler
I want to apply formatting to a cell in a summary row (or the entire row in some cases) but I have several summary rows in my grid. How can I tell in the viewrowformatting or other event which summary row is active?
Hi,
I use a spreadsheet to display a xlsm file which contains buttons and data validation from a list.
The attached file "Excel" shows how this file looks in Excel.
The attached file "SpreadSheet" shows how this file looks in the spreadsheet :
- buttons are not displayed
- the data validation in the cell works correctly according to the list but drop down arrow is not shown in the cell even if the options "In-cell dropdown" is checked
Thanks for your help
Regards
hi . i'm using vs 2015 on win 10 . raddatetime picker shamsi calendar work on win 10 but not work on other windos(7,8,8.1)
on windows 8.1 it convert to miladi
my code :
Me.DateTimePicker1.Culture = New System.Globalization.CultureInfo("Fa-IR")

Hello Telerik Team,
I want all MultiColumn ComboBoxes in a form ReadOnly mode
foreach (Control ctrl in this.Controls){ if (ctrl.GetType() == typeof(RadMultiColumnComboBox)) ((RadMultiColumnComboBox)ctrl).ReadOnly = true; //like that}However, ReadOnly property does not exist.
How can I set MultiColumn ComboBox to ReadOnly ?