Hi I have a Rad Grid View that I am exporting to excel using the code below. This works fine, but I would like the code to export the grouped data so that excel sees it as grouped data rather than static cells. Is there a way to achieve this?
Thanks in advance.
private void button4_Click(object sender, EventArgs e) { ExportToExcelML exporter = new ExportToExcelML(this.radGridView1); exporter.HiddenColumnOption = Telerik.WinControls.UI.Export.HiddenOption.DoNotExport; exporter.ExportVisualSettings = true; exporter.SheetName = "Films"; string fileName = "C:\\ExportedData.xls"; exporter.RunExport(fileName); }


Hi,
I am trying to open form maximized depending on DPI settings.
Unfortunately when I try to do that from code-behind (this is Windows Desktop application) I do not have WindowState available.
Form that I use is RadRibbonForm.
Is it possible to set from code how form will be opened?
Thanks,
Oliver
racSchTechs.AutoCompleteDataSource = datatable;racSchTechs.AutoCompleteDisplayMember = "Name_Full";racSchTechs.AutoCompleteValueMember = "id_lanid";

Hi,
I have set the EnableAlternatingRowColor property in my master template to true, and to false for the gid child template. However its seems the grid obeys only the master template setting across all children templates.
Is it possible to set a child template EnableAlternatingRowColor property different from the master template at all?
Regards,
George

