Hello!
Is it possible to have a radDock with several tabbed DocumentWindows where the user is only allowed to "Float" these Documents and can ONLY dock them back on the original DocumentContainer? Meaning the User is not allowed to Dock a floating window inside another one of these DocumentWindows?
All but one DocumentWindow is created dynamically - so I should be able to set each window as needed i'm just stuck on what those settings are!
Any help you can provide would be great!
Kindest regards,
Curtis.

Hi Support,
Now I added new usercontrol but all of item font too small. And not the same like the existing item. Please see below pic. Blue circle is new add items but why font size is small?
Thanks,
Moeu

hi
1-one columns(date) in grid view by formatinfo(fa-ir, yyyy, Mm, dd) view in run application
But Column date the output is in English
2-cell border How it's set
3-what not show row number set by cell formatting in expory excel?
4--in pdf export rtl language not suport?

Hi,
Is it possible to export radgridview (with grouped columns) to .XML format?
Thanks

Hi,
I'm having issues with the ribbon bar title bar when swapping my application between an HD monitor and 4K monitor
This is what is the title bar looks like on the 4K monitor
and this is what it looks like after dragging the application to the HD montior
Any ideas what might be causing this and a possible workaround or solution ?
I'm using the window 7 theme if that matters as well as .Net 4.7.2 and the latest version on Telerik Winforms.
Kind regards
Toby
Hi
I am developing winform project in vb.net sometime i checked answers in forum written in c# but same sample does not work in vb.net
Now i am facing problem radgridview cellvaluechanged in master detail scenario
C#
private void radGridView1_CellValueChanged(object sender, GridViewCellEventArgs e)
{
if (e.Column.OwnerTemplate != radGridView1.MasterTemplate && e.ColumnIndex == 3)
{
EvaluateTotal((GridViewRowInfo)e.Row.Parent);
}
}
vb.net
Private Sub rdgvPendingRpt_CellValueChanged(sender As Object, e As GridViewCellEventArgs) Handles rdgvPendingRpt.CellValueChanged
If e.ColumnIndex = 3 AndAlso e.Column.OwnerTemplate <> rdgvPendingRpt Then
EvaluateTotal(CType(e.Row.Parent, GridViewRowInfo))
End If
End Sub
Error Operator '<>' is not defined for types 'GridViewTemplate' and 'RadGridView'.
it giving me error in above line. I am attaching screenshot for same.
Kindly do the needful
Regards
Nandan Navale


code using for export
Case ".XLSX"
Dim exporter As Telerik.WinControls.Export.GridViewSpreadExport = New Telerik.WinControls.Export.GridViewSpreadExport(GridView) With {.HiddenColumnOption = UI.Export.HiddenOption.DoNotExport, .HiddenRowOption = UI.Export.HiddenOption.DoNotExport, .SummariesExportOption = UI.Export.SummariesOption.ExportAll, .ExportVisualSettings = True, .ExportViewDefinition = False}
exporter.RunExport(SaveFileDialog1.FileName, New Telerik.WinControls.Export.SpreadExportRenderer())

Hello.
I have the following code that used to work:
private void cellFormatting(object sender, CellFormattingEventArgs e)
{
if (chkHighlight.Checked && e.RowIndex < grid.RowCount - 1 &&
e.Column.FieldName != nameof(Audited.ValidFromTime) &&
e.CellElement.Value?.Equals(grid.Rows[e.RowIndex + 1].Cells[e.ColumnIndex].Value) != true)
e.CellElement.Font = new Font(e.CellElement.Font, FontStyle.Bold);
else
e.CellElement.ResetValue(LightVisualElement.FontProperty, ValueResetFlags.Local);
}
For some reason none of the cells comes up bold anymore (I set a breakpoint to make sure the code that sets the Font was being executed).
Any ideas?

Hey there!
I wanted to be able to Show the 'AutoCompleteDropDown' after having already used it, or having text behind the cursor. I wanted to use a space to separate such usage but I can't quite control this functionality in this object (RadTextBoxControl).
This is usefull to help the user to write complex formulas without having to check for specific names or values. And these formulas can have more than 300 characters so i want to 'help' the user on his "journey".
Ex: vQuant * 300 - (vValue - 66) -> The 'vQuant' and 'vValue' are variables or constants that the user doesn't know by memory because there are more than 1000. He may know the first 2 letters or so tho.
I was able to show the object by doing 'THIS-OBJECT:radTextBoxControl1:TextBoxElement:AutoCompleteDropDown:Show().' but it has 0 items (even by having text in the object and 'THIS-OBJECT:radTextBoxControl1:TextBoxElement:AutoCompleteItems:Items:count' being > 0).
I'm open to any ideas.
JP
