or
<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?

--------------------------------------------------------| col1 | col2 |______col3________|_______col4_______|| | | col3.1 | col3.2 | col4.1 | col4.2 |--------------------------------------------------------| | | | | | |<tr class="rgCommandRow"><td class="rgCommandCell" colspan="6"><tr class="rgCommandRow"><td class="rgCommandCell" colspan="4">Private Sub weldsGrid_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles weldsGrid.ItemCreated If e.Item.ItemType = GridItemType.CommandItem Then e.Item.SetRenderMethodDelegate(AddressOf RenderCommandDelegate) End If 'If e.Item.ItemType = GridItemType.Header Then ' e.Item.SetRenderMethodDelegate(AddressOf RenderHeaderDelegate) 'End If End Sub Private Sub RenderCommandDelegate(ByVal output As HtmlTextWriter, ByVal container As Control) Dim cell = DirectCast(container.Controls(0), System.Web.UI.WebControls.TableCell) 'IE7 or IE8 in compat mode fix cell.ColumnSpan = 20 cell.RenderControl(output) End Sub