or
.RadGrid_Default .rgHeader { background:#ffffff repeat-x url('/images/GridHeader-BG.gif'); } .RadGrid_Default th.rgSorted { background:#ffffff repeat-x url('/images/GridHeader-BG.gif');!important; background-color:#ffffff;
} 
<telerik:RadNumericTextBox ID="textInput" Type="Percent" MaxLength="5" runat="server" /><asp:Button ID="buttonUpdate" Text="Calculate" OnClick="ButtonUpdate_Click" runat="server" />
if (optionType == "ComboBox"){ RadComboBox combo = new RadComboBox(); combo.ID = "dd_" + option.ToString(); combo.Font.Size = 8; if (optionName == "Report Date") { combo.AutoPostBack = true; combo.SelectedIndexChanged += new RadComboBoxSelectedIndexChangedEventHandler(dd_RptDate_SelectedIndexChanged); } foreach (var optionValue in q_optionValues) { combo.Items.Add(new RadComboBoxItem(optionValue.tReportOptionValue.OptNm, optionValue.tReportOptionValue.OptVal)); // if option is Report Date, determine additional controls depending on dropdown value if (optionName == "Report Date") { //if optionvalue is specific date, set the datepickers bool to true if (optionValue.tReportOptionValue.OptNm == "Specific Date") { datepickers = true; } //if optionvalue is specific months, set the monthpickers bool to true if (optionValue.tReportOptionValue.OptNm == "Specific Months") { //datepickers = true; } } } panelContent.Controls.Add(combo);}protected void dd_RptDate_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e){ string url = "/"; Response.Redirect(url); RadComboBox combo = (RadComboBox)sender; GridEditFormInsertItem editFormItem = (GridEditFormInsertItem)combo.NamingContainer; BuildOptions(editFormItem);}