When I enter text in the radeditor and perform spell check. It workds fine on my machine. But it generates an error on my clients machine. Deployments of the web application is done by client themself on there server.
Could not guess what might be the possible cause. please help
function
GetXMLObject()
{
var
xmlhttp=
false
;
try
{
xmlhttp =
new
ActiveXObject(
"Msxml2.XMLHTTP"
);
}
catch
(e) {
try
{
xmlhttp =
new
ActiveXObject(
"Microsoft.XMLHTTP"
);
}
catch
(E)
{
xmlhttp =
false
;
}
}
if
(!xmlhttp &&
typeof
XMLHttpRequest!=
'undefined'
) {
try
{
xmlhttp =
new
XMLHttpRequest();
}
catch
(e) {
xmlhttp=
false
;
}
}
if
(!xmlhttp && window.createRequest) {
try
{
xmlhttp = window.createRequest();
}
catch
(e) {
xmlhttp=
false
;
}
}
if
(!xmlhttp)
return
null
;
else
return
xmlhttp;
}
function
ShowTooltip(sender, manager, url) {
if
(manager !=
null
) {
var
tooltip = manager.getToolTipByElement(sender);
if
(!tooltip) {
tooltip = manager.createToolTip(sender);
}
if
(xmlRequest !=
null
)
xmlRequest.Abort();
xmlRequest = GetXMLObject();
tooltip.show();
var
contentElement = document.createElement(
'div'
);
contentElement.innerHTML =
"<img src='../../images/loading7.gif' />"
;
tooltip.set_contentElement(contentElement);
if
(xmlRequest !=
null
) {
xmlRequest.open(
"GET"
, url,
true
);
xmlRequest.onreadystatechange =
function
() {
if
(xmlRequest.readyState == 4) {
if
(xmlRequest.status == 200) {
tooltip.hide();
contentElement = document.createElement(
'div'
);
contentElement.innerHTML = xmlRequest.ResponseText;
if
(contentElement.outerText.length < 10)
contentElement.style.width =
"100px"
;
tooltip.set_contentElement(contentElement);
tooltip.show();
}
}
}
}
xmlRequest.send(
null
);
}
<
telerik:RadAjaxManager
ID
=
"RadAjaxManager1"
runat
=
"server"
/>
<
user:ContolParent
runat
=
"server"
ID
=
"cParent"
/>
<
telerik:RadWindow
ID
=
"selectorPopupWindow"
CssClass
=
"rad_window"
runat
=
"server"
Title
=
"Galeria multimediów"
Width
=
"950"
EnableEmbeddedSkins
=
"false"
Skin
=
"MSIT_sitefinityLocal"
Height
=
"600"
VisibleOnPageLoad
=
"false"
Behaviors
=
"Minimize, Move, Maximize, Close"
OffsetElementID
=
"RadGrid1"
>
<
ContentTemplate
>
<
user:ControlChild
runat
=
"server"
ID
=
"cChild"
/>
</
ContentTemplate
>
</
telerik:RadWindow
>
Grids, TextBox etc.
<
asp:Button
runat
=
"server"
ID
=
"btnCancel"
Text
=
"Cancel"
/>
Hi,
We are using RadEditor with Ajax Tab Container.
We have three tabs in tab container.
Tab 1 - RadEditor
Tab 2 - .Net Grid View
Tab 3 - .Net Grid View
In IE browser, we don't face any issue, it is working fine.
In Firefox, we are facing the following issue,
Whenever working with Rad editor in first tab, we don't have any issue.
But whenever, we are working with second tab and coming back to first tab, the Editor alignment goes off and the buttons available at top (first row controls - e.g., spell checker ...) are displayed in the single column instead of single row, so the control enlarges and UI is affected. In the same situation, if we hit refresh (F5), then the control regains the original alignment and look & feel.
Please let us know, if we are missing something.
Regards,
Guru
<img id=
"propertyImg"
src=
"Telerik.Web.UI.WebResource.axd?imgid=900376f0988148a1a0cdb64b64d02373&type=rbi"
height=
"50"
width=
"50"
>
<img id=
"propertyImg"
src=
"http://servername:serverport/Telerik.Web.UI.WebResource.axd?imgid=900376f0988148a1a0cdb64b64d02373&type=rbi"
height=
"50"
width=
"50"
>