Hello, I just have a simple question is it possible to remove the expand arrow? I just want the group to always display all the items without the option to collapse. Also, I have some items which are not in a group because the column they are grouped by is empty. Is it possible to hide the group area for these?
Thank you
Hi,
I suspect this is not possible but thought I'd ask just in case.
Say in the syntax editor we have all the coloring going on desired. Is it possible to programmatically copy the selected text that can then be pasted into other richtexteditors keeping the formatting?
Best example of this I can think of is with Microsoft sql management studio - if you copy a query into an email or word it keeps the same coloring and formatting.
It can also be done with the standard winform richtextedit:
Clipboard.SetText(myRichTextBox.Rtf, TextDataFormat.Rtf);
Then pasting that into another richtextbox or email or even word, will maintain all the formatting.
I did try the above with GetSelectedText() but that was a no go.
Regards
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())