or
| <rad:GridNumericColumn DataField="EstQty" HeaderText="Est. Qty." |
| UniqueName="EstQtyColumn" Aggregate="Sum" NumericType="Number" |
| DataType="System.Int32" DataFormatString="{0:N0}"> |
| <HeaderStyle HorizontalAlign="Center" /> |
| <ItemStyle Width="6em" /> |
| </rad:GridNumericColumn> |
| <rad:GridNumericColumn DataField="FinalQty" HeaderText="Final Qty." |
| UniqueName="FinalQtyColumn" Aggregate="Sum" NumericType="Number" |
| DataType="System.Int32" DataFormatString="{0:N0}"> |
| <HeaderStyle HorizontalAlign="Center" /> |
| <ItemStyle Width="6em" /> |
| </rad:GridNumericColumn> |
| <rad:GridNumericColumn DataField="Postage" HeaderText="Postage" UniqueName="PostageColumn" |
| NumericType="Currency" DataType="System.Decimal" Aggregate="Sum" |
| FooterAggregateFormatString="{0:C}"> |
| <HeaderStyle HorizontalAlign="Center" /> |
| <ItemStyle HorizontalAlign="Right" /> |
| </rad:GridNumericColumn> |


RadTreeNode
node = new RadTreeNode();
node.ForeColor = System.Drawing.
Color.Red;
e.Node.Nodes.Add(node);
but as soon as I click on a node or perform an action on my contest menu the forecolor return to black.
Can somebody explain me what I'm doing wrong? or if it isn't possible to set a permanetly another forecolor?
Thank you very much
Raphael

I want to export the RadGrid to PDF and at the top of the PDF I want to show a summary of what the RadGrid contains. The summary is shown above the RadGrid on the web page. I understand how to export the RadGrid to PDF. My problem is that because it only exports what is in the MasterTableView, I can't include the summary in that PDF. Is there anyway to accomplish this?
Thanks,
J.R. Garcia