|
Rank: Advanced Member Groups: Member
Joined: 7/18/2008 Posts: 76
|
Good Afternoon, I am currently in the process of migrating an application from VS2005 to VS2008 (I am using EO Web Controls 7.0 (2009)) EO.Web.dll date 07/05/2009 12:03 PM. After the application was migrated successfully, I started testing the Spell Checker functionality (which was working in VS2005 and eoObjects 2008) and noticed that the ClientSideOnEnd is not firing any more when I close out the Spell Checker Dialog. Everything else seems to be working OK. Can you please check into this? I have attached some sample code that was working in the prior version:
Code: HTML/ASPX
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="SpellChecker.aspx.vb" Inherits="QIR.SpellChecker" %>
<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Spell Checker Test</title>
<script language="javascript" type="text/javascript">
function message_handler(control, name, message)
{
if (name == "no_error")
return; //silent "no_error" message
}
function endSpellCheck_handler(dialog, arg)
{
alert("End Spell Check");
}
</script>
</head>
<body>
<form id="frmSpellChecker" runat="server">
<div>
<br />
<eo:SpellChecker ID="SpellChecker1" runat="server" ControlToCheck="TextBox1" DialogID="SpellCheckerDialog1"
StartButton="btnSpellCheck" ClientSideOnMessage="message_handler">
</eo:SpellChecker>
</div>
<eo:SpellCheckerDialog ID="SpellCheckerDialog1" runat="server" CloseButtonUrl="00070101"
ControlSkinID="None" HeaderHtml="Dialog Title" Height="200px" Width="300px" ClientSideOnEnd="endSpellCheck_handler"
AllowResize="True" BorderColor="#335C88" BorderStyle="Solid" BorderWidth="1px"
MinimizeButtonUrl="00070102" ResizeImageUrl="00020014" RestoreButtonUrl="00070103"
ShadowColor="LightGray" ShadowDepth="3">
<ContentStyleActive CssText="border-top: #335c88 1px solid; background-color: #e5f1fd">
</ContentStyleActive>
<HeaderStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 11px; background-image: url(00070104); padding-bottom: 3px; padding-top: 3px; font-family: tahoma">
</HeaderStyleActive>
<FooterStyleActive CssText="background-color: #e5f1fd; padding-bottom: 8px;"></FooterStyleActive>
</eo:SpellCheckerDialog>
<br />
<asp:TextBox ID="TextBox1" runat="server" Height="181px" TextMode="MultiLine" Width="473px">This sampel uses a dialog to display the spell errors. Please refer to the product documentaton under section "Using Spell Checker Dialog" for more deteils.</asp:TextBox><br />
<asp:Button ID="btnSpellCheck" runat="server" Text="Spell Check" ToolTip="Start Spell Checking" />
</form>
</body>
</html>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
This appears to a bug. We will look into it and get back to you as soon as possible.
Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 7/18/2008 Posts: 76
|
As always, much appreciated. Your product support is by far the best I have encountered.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Darrell Reinke wrote:As always, much appreciated. Your product support is by far the best I have encountered. Glad to hear that! Please let other people know that when you have chance. :)
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have posted the new build that should fix this problem. Please see your private message for download location.
Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 7/18/2008 Posts: 76
|
It is working again. Thank you again for the quick turnaround. Your support staff is truly amazing!
|
|