When I spell-check a form that contains 2 or more controls as defined in the ControlsToCheckProperty, I get the following error message in the browser:
Microsoft JScript runtime error: Object required
I enabled the debugger within my markup and I was able to identify where the error ocurs within the ScriptResource.axd
if(this.get_element().value!=null){
try{
_21=this.get_element().value;
}
In this case, the this.get_element() is returning a null reference but the code still gets its value property.
Since the script is rendered by the HttpHandler, there is no way for me to add an additional check on the script.
The whole context is as this. An aspx page that already contained MS Ajax Extensions with a ScriptManager and an UpdatePanel. Changing this to the Telerik versions is not an option. It would require thousands of hours of regression testing from our QA team.
Need help!
HeightOffset problem with Q2 release and IE 7
Using a similar test as Jared Tucker, thread “HeightOffset Bug in 2008.1.619” (example included), I find under 2008.2.723.35 when running under IE 7 the footer content seems to jump up to a higher position on the page when you resize the browser.
Refreshing the page is required to correct the problem.
No problems with FF and Safari.
Please advice
Regards
Airedale
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="SplitterFooter._Default" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Untitled Page</title>
<style type="text/css">
html, body, form
{
height: 100%;
overflow: hidden;
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div id="header" style="height:100px;background-color:Gray;">Header</div>
<telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%"
HeightOffset="200">
<telerik:RadPane ID="RadPane1" runat="server"></telerik:RadPane>
<telerik:RadPane ID="RadPane2" runat="server"></telerik:RadPane>
</telerik:RadSplitter>
<div id="footer" style="height:100px;background-color:Gray;">Footer</div>
</form>
</body>
</html>
| else if (e.Item.Value.Substring(0, 2).Equals("CC")) | |
| { | |
| bool hide = true; | |
| string[] colDel = e.Item.Value.Split(delimiterChars); | |
| string colName = colDel[1]; | |
| RadToolBarButton mybut = (RadToolBarButton)e.Item; | |
| if (mybut.Checked) | |
| { | |
| mybut.Checked = false; | |
| mybut.ImageUrl = ""; | |
| hide = true; | |
| } | |
| else | |
| { | |
| mybut.Checked = true; | |
| mybut.ImageUrl = "/Images/Toolbar/update.gif"; | |
| hide = false; | |
| } | |
| foreach (GridColumn rc in rgAcct.MasterTableView.Columns) | |
| { | |
| if (rc.HeaderText.Equals(colName)) | |
| { | |
| if (hide) | |
| { rc.Visible = false; } | |
| else | |
| { rc.Visible = true; } | |
| break; | |
| } | |
| } | |
| foreach (GridColumn rc in rgAcct.MasterTableView.AutoGeneratedColumns) | |
| { | |
| if (rc.HeaderText.Equals(colName)) | |
| { | |
| if (hide) | |
| { rc.Visible = false; } | |
| else | |
| { rc.Visible = true; } | |
| break; | |
| } | |
| } | |
| } |