Hi,
We have used RAD Grid with GridTableView with HierarchyDefaultExpanded=True. Attached screen shot "ExpandedColumn Grid.JPG"
There is a provision to export the gird to PDF (Third party dll). We want to hide the expand column image from header and detail view.
I have tried using MyGrid.MasterTableView.ExpandCollapseColumn.Display = false; This Hides the grouping row and only shows the detail grid in pdf. I have also tried
This also not working. Attached screen shot of PDF. Please suggest the solution. should be able to control at runtime.
We have used RAD Grid with GridTableView with HierarchyDefaultExpanded=True. Attached screen shot "ExpandedColumn Grid.JPG"
There is a provision to export the gird to PDF (Third party dll). We want to hide the expand column image from header and detail view.
I have tried using MyGrid.MasterTableView.ExpandCollapseColumn.Display = false; This Hides the grouping row and only shows the detail grid in pdf. I have also tried
(rgdGenderAgeSummaryReport.MasterTableView.GetItems(GridItemType.Header)[0] as GridHeaderItem)["ExpandColumn"].Visible = false;
foreach (GridDataItem dataItem in rgdGenderAgeSummaryReport.MasterTableView.Items)
{
dataItem["ExpandColumn"].Style["display"] = "none";
dataItem["ExpandColumn"].Visible = false;
}
This also not working. Attached screen shot of PDF. Please suggest the solution. should be able to control at runtime.