Hi
I am trying to hide the GridEditCommandColumn of a GridTableView when the user clicks on the “add new record” commandItem of the GridTableView.
GridEditCommandColumn editColumnMaster = (GridEditCommandColumn)radGridProjects.MasterTableView.GetColumn("masterEditColum");
editColumnMaster.Visible = false;
The above code in the item command event of the grid works perfectly to hide the editcolumn of the mastertableview but not the detail table. It seems to me the GridTableView’s editcolumn only hides after the user clicks on save or cancel. The hierarchy load mode of the grid is set to ServerBind and I am using form templates.
Thank you
Fred

<telerik:GridButtonColumn CommandName="Delete" HeaderStyle-Width="30px" Text="Delete" UniqueName="columnButtonDelete" ConfirmDialogType="RadWindow" ConfirmText="Are you sure to delete the record?" ConfirmTitle="Confirm Delete"></telerik:GridButtonColumn>CType(DataItem("columnButtonDelete").Controls(0), LinkButton).Enabled = False<telerik:RadGrid ID="GridMonies" runat="server"> </telerik:RadGrid>GridMonies.DataSource = WSA.PaymentDrawdownView(WSARecord) GridMonies.DataBind()I would like to change font size of a combobox items only on one page, other pages I would like to apply default ( vista – skin) settings, How do I do this?