or

var backColor = apt.get_backColor();apt.set_cssClass('appt-main'); // BUG: makes the appointment go grey without the first and last linesapt.set_backColor(backColor);.appt-main { opacity:0.6; filter:alpha(opacity=60); /* For IE8 and earlier */}
<asp:Login ID="LoginUser" runat="server" EnableViewState="false" RenderOuterTable="false"> <LayoutTemplate> <span class="failureNotification"> <asp:Literal ID="FailureText" runat="server"></asp:Literal> </span> <asp:ValidationSummary ID="LoginUserValidationSummary" runat="server" CssClass="failureNotification" ValidationGroup="LoginUserValidationGroup"/> <div class="accountInfo"> <fieldset class="login" style="border-style: none; border-color: Transparent"> <%-- <legend>Account Information</legend>--%> <p> <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName">Username:</asp:Label> <asp:TextBox ID="UserName" runat="server" CssClass="textEntry" Width="160px" AutoPostBack="true" ontextchanged="UserName_TextChanged"></asp:TextBox> <asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName" CssClass="failureNotification" ErrorMessage="User Name is required." ToolTip="User Name is required." ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator> </p> <p> <asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password">Password:</asp:Label> <asp:TextBox ID="Password" runat="server" CssClass="passwordEntry" Width="160px"></asp:TextBox> <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password" CssClass="failureNotification" ErrorMessage="Password is required." ToolTip="Password is required." ValidationGroup="LoginUserValidationGroup">*</asp:RequiredFieldValidator> </p> <p> </p> </fieldset> <p class="submitButton"> <telerik:RadButton ID="rbLogin" runat="server" CommandName="Login" Text="Log In" ValidationGroup="LoginUserValidationGroup" Font-Names="Microsoft Sans Serif" Skin="Black"> </telerik:RadButton> <telerik:RadButton ID="rbForgotPassword" runat="server" Text="Forgot Password" ValidationGroup="LoginUserValidationGroup" Font-Names="Microsoft Sans Serif" Skin="Black" onclick="rbForgotPassword_Click"> </telerik:RadButton> </p> </div> </LayoutTemplate> </asp:Login>
string
obtainUsername = Request.QueryString["Username"];
string obtainPassword = Request.QueryString["Password"];
var userNameTextBox = LoginUser.FindControl("UserName") as TextBox; var passwordTextBox = LoginUser.FindControl("Password") as TextBox;
userNameTextBox.Text = obtainUsername;
passwordTextBox.Text = obtainPassword;
var submitButton = LoginUser.FindControl("rbButton") as RadButton; ((IPostBackEventHandler)submitButton).RaisePostBackEvent(null);Dear Telerik Team,
We are facing a problem with export to CSV feature using RadGrid. Actually we have a grid having a column showing range for ‘# of FTEs’ and ‘# of Freelancers’. You can find the column data in the attached file Grid.jpg. When we try to export the grid to CSV, these two columns converts to date column as shown in the attached file Excel.jpg.
Please provide us some solution for that.
Thanks
Tarika Team