or
<ItemTemplate> <tr class="rlvI"> <td> <asp:Label ID="IDLabel" runat="server" Text='<%# Eval("ID") %>' /> </td> <td> <asp:Label ID="TASK_NAMELabel" runat="server" Text='<%# Eval("TASK_NAME") %>' /> </td> <td> <asp:Label ID="NEXT_RUNLabel" runat="server" Text='<%# Eval("NEXT_RUN") %>' /> </td> <td> <asp:Label ID="FREQUENCYLabel" runat="server" Text='<%# Eval("FREQUENCY") %>' /> </td> <td> <telerik:RadButton ID="ENABLEDToggle" runat="server" Width=75 ButtonType="StandardButton" ToggleType="CustomToggle" Checked='<%# Enabled_Converter(Eval("ENABLED")) %>' OnCheckedChanged="TaskStateChange_Clicked"> <ToggleStates> <telerik:RadButtonToggleState Text="Enabled" /> <telerik:RadButtonToggleState Text="Disabled" /> </ToggleStates> </telerik:RadButton> </td> </tr></ItemTemplate>
Hi All,
I keep getting this error messaage. The messge says
"A script on this page is causing Internet Explorer to run slowly"
I am using telerik controls too, but not sure what should I do so that this error message goes away. I also followed this link and tried to resolve the error, I followed each and every step, but this article did not resolve the error.
http://support.microsoft.com/kb/175500
Thanks.
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> function openWinRefClinic() { window.radopen("FrmReferralClinicGrid.aspx", "RefClinicDialog"); } function confirmCallBackFn(arg) { if (arg == true) { document.getElementById("Button1").click(); } else { document.getElementById("Button2").click(); } } function alertAndNavigateDr() { window.location.href = "FrmReferralDoctorGrid.aspx"; } </script> </telerik:RadCodeBlock>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server">
</telerik:RadScriptManager>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server">
<Windows>
<telerik:RadWindow ID="RefClinicDialog" Title="Referral Clinic Data" runat="server" Height="550px" Width="550px"
Left="150px" Behaviors="Close" />
</Windows>
</telerik:RadWindowManager>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RCCountry">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RCCity" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RbSave">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RbSave" />
<telerik:AjaxUpdatedControl ControlID="Message" />
<telerik:AjaxUpdatedControl ControlID="lblerror" />
<telerik:AjaxUpdatedControl ControlID="lblName" />
<telerik:AjaxUpdatedControl ControlID="emailValidator" />
<telerik:AjaxUpdatedControl ControlID="lblContact" />
<telerik:AjaxUpdatedControl ControlID="lblLicence" />
<telerik:AjaxUpdatedControl ControlID="lblScript" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="RbClose">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RbClose" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
///protected void RbSave_Click1(object sender, EventArgs e) { if (RCDrName.Text == "") { lblName.Visible = true; RCDrName.Focus(); return; } if (RCClinic.SelectedIndex == 0) { lblerror.Visible = true; RCClinic.Focus(); return; } if (RTMobile.Text == "") { lblContact.Visible = true; RTMobile.Focus(); return; } if (RTLicenceNo.Text == "") { lblLicence.Text = "Please enter Health Authority License No!"; lblLicence.Visible = true; RTLicenceNo.Focus(); return; } if (!string.IsNullOrEmpty(Id)) { bool statusU = _refDoctorService.UpdateDoctor(refdoctor); if (statusU == true) { RadWindowManager1.RadAlert("Referral doctor data updated successfully!", 300, 100, "Update Referral Doctor", "alertAndNavigateDr", "myAlertImage.png"); } else { Message.InnerHtml = "Referral doctor data update failed"; return; } } else { //check if ref doctor exist string search = " where Fld_RefDocName='" + refdoctor.Fld_RefDocName + "'" + " and " + " Fld_ClinicID=" + refdoctor.Fld_ClinicID; bool check = _refDoctorService.DoctorExists(search); if (check == true) { RadWindowManager1.RadConfirm("Referral Doctor already exist!Do you want continue?", "confirmCallBackFn", 300, 100, null, "Warning", "myConfirmImage.png"); } else { bool result = _refDoctorService.SaveRefDoctor(refdoctor); if (result == true) { RadWindowManager1.RadAlert("Referral doctor added successfully!", 300, 100, "Add Referral Doctor", "alertAndNavigateDr", "myAlertImage.png"); } else { Message.InnerText = "Referral doctor is not added.Please try again!"; return; } } } } protected void Button1_Click(object sender, EventArgs e) { //moving the fields bool result = _refDoctorService.SaveRefDoctor(refdoctor); if (result == true) { RadWindowManager1.RadAlert("Referral doctor added successfully!", 300, 100, "Add Referral Doctor", "alertAndNavigateDr", "myAlertImage.png"); } else { Message.InnerText = "Referral doctor is not added.Please try again!"; return; } }I want to know if it is possible to change the day, week, month, and timeline from horizontal along the top to be display vertically on the left hand side then change the time which is vertically on the left hand side to horizontal along the top.
I have attached an image of what I need.
cheers
John M

