CommandItemSettings
ExportToPdfText="Export to Pdf"
Whenever I use the designer it keeps putting that in..
Furthermore.. Id actually like that functionality
<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="EntityDataSource1" AutoGenerateEditColumn="True" Width="500px" OnUpdateCommand="RadGrid1_UpdateCommand" OnInsertCommand="RadGrid1_InsertCommand" AutoGenerateColumns="False" AllowFilteringByColumn="True" AllowPaging="True" AllowSorting="True" GridLines="None" ShowGroupPanel="True"> <ClientSettings AllowDragToGroup="True"> </ClientSettings> <MasterTableView DataSourceID="EntityDataSource1" DataKeyNames="OrgID" CommandItemDisplay="Top"> <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings> <Columns> <telerik:GridBoundColumn DataField="OrgID" HeaderText="OrgID" ReadOnly="True" SortExpression="OrgID" UniqueName="OrgID" DataType="System.Int32" Visible="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="OrgName" HeaderText="OrgName" SortExpression="OrgName" UniqueName="OrgName"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Address" HeaderText="Address" SortExpression="Address" UniqueName="Address" Visible="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="City" HeaderText="City" SortExpression="City" UniqueName="City"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="State" HeaderText="State" SortExpression="State" UniqueName="State"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Zip" HeaderText="Zip" SortExpression="Zip" UniqueName="Zip" Visible="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Phone" HeaderText="Phone" SortExpression="Phone" UniqueName="Phone" Visible="false"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Fax" HeaderText="Fax" SortExpression="Fax" UniqueName="Fax" Visible="false"> </telerik:GridBoundColumn> </Columns> </MasterTableView> </telerik:RadGrid> <asp:EntityDataSource ID="EntityDataSource1" runat="server" ConnectionString="name=G3TEntities" DefaultContainerName="G3TEntities" EnableFlattening="False" EnableInsert="True" EntitySetName="Orgs" EnableUpdate="True"> </asp:EntityDataSource>