Title Back Colour Keyoti Title Line Title Curve
Blue Box Top

Rapid Spell with Telerik ASP. NET - RapidSpell Web ASP.NET - Forum

Welcome Guest Search | Active Topics | Log In | Register

Options
Manimozhi
#1 Posted : Thursday, October 24, 2013 8:22:31 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Hi,

We are using Telerk ASP .NET control suite for our development. We want to have the inline spell checker feature build in our applications.

Please let me know, Is it possible to implement the RapidSpell Inline Helper in the Telerik ASP .Net

Thanks.
Dan
#2 Posted : Thursday, October 24, 2013 11:11:27 AM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 10/20/2004
Posts: 456
Hi Manimozhi,

Yes, you can use RapidSpell with Telerik's ASP.NET text box. This KB article should help you;
http://keyoti.com/kb/Def...ew&questId=138&catId=56

Please let me know if you need anything else for now.

Dan
Keyoti Inc.
Dan Wright
Dan
#3 Posted : Thursday, October 24, 2013 4:56:13 PM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 10/20/2004
Posts: 456
With regards to my reply above - that would be the case when using our Control based usage. If you're using the Javascript mode you shouldn't need any special steps to spell check your Telerik control.

Please do let me know if you have any trouble though.

Dan
Keyoti Inc.
Dan Wright
Manimozhi
#4 Posted : Wednesday, December 4, 2013 9:23:39 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Hi,

We are using Telerik with Rapidspell. It works fine.

Here, when we right click on the spell error, it shows the suggestions correctly. But, when we click on the suggestion, it never replaces the selected word with the error.

Please let us know the fix on this.

admin
#5 Posted : Wednesday, December 4, 2013 4:37:03 PM
Rank: Administration

Groups: Administrators

Joined: 8/13/2004
Posts: 66
Hi,

Can you post your code please (or at least the relevant parts)?

Thank you,

Dan
Manimozhi
#6 Posted : Thursday, December 5, 2013 9:27:13 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Hi,

Below the code we had written in aspx file.

Code:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="aspx" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<%@ Register TagPrefix="rapidspellweb" Namespace="Keyoti.RapidSpell" Assembly="Keyoti.RapidSpellWeb.ASP.NETv2" %>
<!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>Untitled Page</title>
    <style type="text/css">
        #form1
        {
            width: 691px;
            height: 413px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table>
            <tr>
                <td>
                    <telerik:RadTextBox ID="txtPlan" runat="server" Height="410px" Width="669px" TextMode="MultiLine">
                    </telerik:RadTextBox>
                </td>
            </tr>
        </table>
        <asp:ScriptManager ID="scriptMngr" runat="server">
        </asp:ScriptManager>
    </div>

    <script src="Keyoti_RapidSpell_Web_Common/RapidSpell-AYT.js" type="text/javascript"></script>

    </form>
</body>
</html>



Following are the code we had written in aspx.cs file

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
txtPlan.Text = "Herre we are Dooing Tesstinng Forr Spell Checkr. Cann you please findd the Replaceement Spelling errorss";

}
}

Here, when we right click on the spell error, it shows the suggestions correctly. But, when we click on the suggestion, it never replaces the selected word with the error.

Please let us know the fix on this.
Dan
#7 Posted : Thursday, December 5, 2013 1:54:00 PM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 10/20/2004
Posts: 456
Thank you - we will attempt to reproduce the problem and will get back to you as soon as is possible.

Dan
Dan Wright
admin
#8 Posted : Friday, December 6, 2013 12:24:07 PM
Rank: Administration

Groups: Administrators

Joined: 8/13/2004
Posts: 66
Hi,

We tried out the code you sent with the latest Telerik suite, but when running it, there is no rich text box. Even if we take out the spell checker, there is just a plain textbox - is this what is expected? We're using Chrome and IE8 for the tests right now.

Please let me know if you're seeing an actual rich editor, and we can try to figure it out, otherwise we can correct it for the plain editor that is actually appearing for us.

Thanks,

Dan
Manimozhi
#9 Posted : Monday, December 9, 2013 3:28:54 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Hi,

We are using ASP .NET Telerik Version RadControls for ASP.NET AJAX Q2 2013 SP1

We have used Telerik.Web.UI.RadTextBox. Our expected functionality is - we have telerik- Telerik.Web.UI.RadTextBox as base and we want to plug in the spell checker control in it. So that, the control does the spell check and gives the spell suggestions.

As originally mentioned, The issue is - it gives the suggestions for the spell error, when we right click on the word. But, when we select the suggestions from that context menu strip, it doesnt get replaced with the original word in the actual text box.

This is what we have exactly simulated in the Code attached in the previous thread.

Please let me know, the fix for this.

Dan
#10 Posted : Tuesday, December 10, 2013 11:13:33 AM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 10/20/2004
Posts: 456
Sorry, I see now. The problem looks to be that their textbox is doing something under the hood which isn’t compatible with our as you type editor. I’m doubtful that there’s an achievable resolution.

The only thing I can suggest is to put it in static mode, like this

<script type="text/javascript">
rapidSpell.ayt_staticMode = true;
</script>
<input type="button" onclick="rapidSpell.ayt_spellCheck()" value=”Spell Check” />

Dan
Dan Wright
Manimozhi
#11 Posted : Thursday, February 20, 2014 12:10:30 PM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Hi,

Your solution is working great for radtextbox issues. But again now we are facing some issues in RadDatePicker.

Currently we are using RadDatePicker in our application. During run time, when i click the RadDatePicker, again the new text box is opening near the date picker control. As per your's i had checked with nospell='true'. But still it is not working.

Following is the code i had written in aspx file.
<telerik:RadDatePicker ID="txtDueon" runat="server" DateInput-DateFormat="dd-MMM-yyyy" onkeypress="EnableSave" nospell="true">
</telerik:RadDatePicker>

Please let us know how to fix this.
Dan
#12 Posted : Thursday, February 20, 2014 4:25:02 PM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 10/20/2004
Posts: 456
Can you send your browser View Source to support at keyoti.com please?

thanks,

Dan
Dan Wright
Manimozhi
#13 Posted : Tuesday, February 25, 2014 6:14:17 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21

<!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><title>
Untitled Page
</title>
<style type="text/css">
#form1
{
width: 691px;
height: 413px;
}
</style>
<link href="/RapidSpell/WebResource.axd?d=k3_NAgj8LUqSlqcHWNrCwf6Qlu8pj_ZA_JvnQ5HcCvyijyXYwVc1lC9t6UvmR0vh6YskeUEm_laICEMpcd3a-KigU2TkrjlT4AjdkWM3vcaCi1Ic3SnDwIggVif3Z1xEV3vvIA2&t=635092201460000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/RapidSpell/WebResource.axd?d=HBXLAVrNFugxWn9lKIPCG5DZhjIVDGHOIMCbn33_SxegTq1BHhN4G6YXH3jzyluMxDXRzE0pfOOoxPsAYypjhnYVGzgzyPV79FVdsNBGDNj0VlrCFNfhpdMN5kOzdtuIjx6-s0Z6jaZTsaih1o21ypG5qMc1&t=635092201460000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/RapidSpell/WebResource.axd?d=HaNEw3wSdb9SJeasAw8RoYp7ObcZ_WTIoRqASSszqEpQ2iRyrd4jdjXviKZKfjkEu5c6FFXBLQVe9roMRvYxKGNyEsjc_rHtY17E64CPdlWjLnMtt2zLIZyGiGscFGx3C89ynw2&t=635092201460000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/RapidSpell/WebResource.axd?d=bTtTZGd5RYNVKgWo9_E_gCWdAe7Ig6-Va2mw8i3aIaFblYaPExA4cM3o1ut5mWcn_tejAf6k41d3sBfeotyHP32hvz05YF5fpi26dVirwTyG0woFpSpsl5j5cg-Cn5vn5T-TGuJ2ijiMxREkM5w2xmTslXQ1&t=635092201460000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /></head>
<body>
<form name="form1" method="post" action="Default.aspx" id="form1">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTEyMTczNjMzMTQPZBYCAgMPZBYCAgMPZBYEZg8UKwAIDxYKHgRUZXh0ZB4RRW5hYmxlQXJpYVN1cHBvcnRoHgRTa2luBQdEZWZhdWx0HhdFbmFibGVBamF4U2tpblJlbmRlcmluZ2geDUxhYmVsQ3NzQ2xhc3MFB3JpTGFiZWxkFgYeBVdpZHRoGwAAAAAAAFlABwAAAB4IQ3NzQ2xhc3MFEXJpVGV4dEJveCByaUhvdmVyHgRfIVNCAoICFgYfBRsAAAAAAABZQAcAAAAfBgURcmlUZXh0Qm94IHJpRXJyb3IfBwKCAhYGHwUbAAAAAAAAWUAHAAAAHwYFE3JpVGV4dEJveCByaUZvY3VzZWQfBwKCAhYGHwUbAAAAAAAAWUAHAAAAHwYFE3JpVGV4dEJveCByaUVuYWJsZWQfBwKCAhYGHwUbAAAAAAAAWUAHAAAAHwYFFHJpVGV4dEJveCByaURpc2FibGVkHwcCggIWBh8FGwAAAAAAAFlABwAAAB8GBRFyaVRleHRCb3ggcmlFbXB0eR8HAoICFgYfBRsAAAAAAABZQAcAAAAfBgUQcmlUZXh0Qm94IHJpUmVhZB8HAoICZAICDxQrAA0PFggFD1JlbmRlckludmlzaWJsZWcFEUVuYWJsZU11bHRpU2VsZWN0aAULU3BlY2lhbERheXMPBZIBVGVsZXJpay5XZWIuVUkuQ2FsZW5kYXIuQ29sbGVjdGlvbnMuQ2FsZW5kYXJEYXlDb2xsZWN0aW9uLCBUZWxlcmlrLldlYi5VSSwgVmVyc2lvbj0yMDEyLjIuNjA3LjM1LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTEyMWZhZTc4MTY1YmEzZDQUKwAABQ1TZWxlY3RlZERhdGVzDwWPAVRlbGVyaWsuV2ViLlVJLkNhbGVuZGFyLkNvbGxlY3Rpb25zLkRhdGVUaW1lQ29sbGVjdGlvbiwgVGVsZXJpay5XZWIuVUksIFZlcnNpb249MjAxMi4yLjYwNy4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0FCsAAA8WBh8BaB8CBQdEZWZhdWx0HwNoZGQWBB8GBQtyY01haW5UYWJsZR8HAgIWBB8GBQxyY090aGVyTW9udGgfBwICZBYEHwYFCnJjU2VsZWN0ZWQfBwICZBYEHwYFCnJjRGlzYWJsZWQfBwICFgQfBgUMcmNPdXRPZlJhbmdlHwcCAhYEHwYFCXJjV2Vla2VuZB8HAgIWBB8GBQdyY0hvdmVyHwcCAhYEHwYFMVJhZENhbGVuZGFyTW9udGhWaWV3IFJhZENhbGVuZGFyTW9udGhWaWV3X0RlZmF1bHQfBwICFgQfBgUJcmNWaWV3U2VsHwcCAmQYAQUeX19Db250cm9sc1JlcXVpcmVQb3N0QmFja0tleV9fFgMFB2R0cEZyb20FEGR0cEZyb20kY2FsZW5kYXIFEGR0cEZyb20kY2FsZW5kYXJolH5nD+RjG5e6Inf85ppqdqQrNw==" />
</div>

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>


<script src="/RapidSpell/WebResource.axd?d=lTUpa5c_jIRbnZ8EH19zQ7tJ4NJZ-TuxuT15k6Wv5By7LzvCjXBf03JUnYR8Zx9oqp2rbhtKihStuEkqoKkG8izA0I41&t=634259051604463446" type="text/javascript"></script>


<script src="/RapidSpell/ScriptResource.axd?d=STljfDBWtaHN_MeRD3I__Xv5vXiwokfB18w2HBIgxDKOI07lUsj1fcOgpaM5zfUl6DnoAARCELNcqjEJDuzRBiPuCTVB-fGD4a1gyv5IappDHFIqGK71I8xP_fKF80K0u-g0zqcXSsvvtyEuqfYjnkRGECSbM7LWe1d8SyreCea0fk560&t=fffffffff9d85fa6" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.');
//]]>
</script>

<script src="/RapidSpell/ScriptResource.axd?d=evWXUEffHh_Qlpw0vAMumYpO73ie1j8f1NrbU3W7TC8ds2xM5aFMqcHzA-8Tgwerk9aXQDTfddeeP8lMuLoTEcWCevQJThnDeORTnZZ_5wMonq0bB2fRmOLjnWa67X3vpvJD9HwrJJDZOb-7wfcqLgBvL8ljevoRoE2LLAWZEQ_gNkBO0&t=fffffffff9d85fa6" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=fUd0cTP-oi3UM8Xix5SNL9i-4DGAJApmzoxd-rHzmyvtRSYzeqyKvZE-mv__KvNhIt_c9dTTencRbyWsvJCHAxuu42WLYOfr529rGd-3uoafx_E8_C97d5bn1qlc_lxGqWlH1g2&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=ZPXhqzsIDVHP2rPq6wPQHDOq42VGgZas3cFsldP4oh4dPRoX0-jnOCaFRcjYTfPyM5L147ddBO3N9P_5Z_gdJFmn3xNaJ5HT5bl-aZQAGjgmMoXWYbucrX6rYix1tfUbBsnv2A2&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=RloVrOjU7MDpj5CWc6UyqW-xUKtWpHEvNuMRTCFQED3NKexbk1CKx8RMrpu5Eeza3DHB7h2JuL5fAx9LiPYrR4qm34msEBSKN2h8IzakBTfeiglz2jT7YKWVwn4myJK9s5tZCdi1QY7vO-usojc8jEYM1Qg1&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=1vySLXDufo17s_bVFjCJrkjRqPVfB-YRZp5wCHNNUUHHnnSLwjOKZi03XNpa8s-t8ilHMVnZiJ-ATlJkR1BSerOoxhibUhIN1CeUPzGu0LQ-Z2ZG1sjtNH94Q8KgJA9Bd1kkOiU394x4NvYC0t987P5-McHxgzmbv922CWwl3bv7ZEMf0&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=pAqfuVDQYvhAOytVr2XZ5sNrjET_SC_dTfU2khfpmzrS4CTyfMZmY_1n8fcupLrxvlY3VTCNQeDqgt6YYQfN9X11L7E1FoDfvbttwxu52wPSHm_Xt6J_nhr7GnZP_LSz5J2vZS_Zbo2-fJUA1Rp0G74pdc41&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=XtLfxO8vlRlCfzlmAavl1Sd3ZPhlpyPuTjeB6A_BGYZOi-Ijl-vICEde01zFDXt1aL2c6ZvL1-Rgf93SEiY2uKgc5gTSBWGMvpYGX_1tcAA1FkqGjtrWkjVqsX8gyVi6Y4g4375w5u-huBuKLzh8Z3OFk5U1&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=-gNWbTBdnOdohsD4r5BKbrtj72OXz6V3HGwSaXfEMX0Fz3-4UiLgf59HWZgN2Twf0vPJ_5o5YZWfFhCFa6RO4Bbzv4qdEb-QdR4FcyyxtStQjUqtRu14MePGr4PvITysglUBNl_l5OS9HUpog-VcFvorvyk1&t=ffffffffeca55c4f" type="text/javascript"></script>
<script src="/RapidSpell/ScriptResource.axd?d=tti2d-HB6yiVkTzdFCn2WJFQCaM5QOJoELVJb2bfAIxv9vtLRCnl07zFqs3_sIt1ArintVRI-pcUR8dN0uSYRqCQ9LOQkvHpuTv--zYhhk0-atvX-wiYixQQilGoWE5iCs7drXGQSSJeCDcdbA3X7kLYBTQ1&t=ffffffffeca55c4f" type="text/javascript"></script>
<div>

<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWAwKd5Mb4CwLIkqHxBgL8n6TeCvJZTFF95hQsE3rWDCJpMs14XV+7" />
</div>
<div>
<table>
<tr>
<td>
<textarea name="txtPlan" rows="2" cols="20" id="txtPlan" style="height:410px;width:669px;">* Testtting data Line Item 1
* Testing data Line Item two
* Testing data Line Item threr Testing dataa Linee Item 4 Testing datta Line Item five
* Testing forr thee inserrtion of star in betweene
* Testing data Line Item 3 Testing data Line Item 4 5 6
* Testing data Line Item to savee</textarea>

</td>
<td>
<div id="dtpFrom_wrapper" class="RadPicker RadPicker_Default" nospell="true" style="display:inline-block;width:160px;">
<!-- 2012.2.607.35 --><input style="visibility:hidden;display:block;float:right;margin:0 0 -1px -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" id="dtpFrom" name="dtpFrom" type="text" class="rdfd_" value="" title="" /><table cellspacing="0" class="rcTable rcSingle" style="width:100%;">
<tr>
<td class="rcInputCell" style="width:100%;"><span id="dtpFrom_dateInput_wrapper" class="riSingle RadInput RadInput_Default" style="display:block;width:100%;"><input id="dtpFrom_dateInput" name="dtpFrom$dateInput" class="riTextBox riEnabled" type="text" /><input id="dtpFrom_dateInput_ClientState" name="dtpFrom_dateInput_ClientState" type="hidden" /></span></td><td><a title="Open the calendar popup." href="#" id="dtpFrom_popupButton" class="rcCalPopup">Open the calendar popup.</a><div id="dtpFrom_calendar_wrapper" style="display: none" ><table id="dtpFrom_calendar" summary="Calendar" cellspacing="0" class="RadCalendar RadCalendar_Default" border="0">
<thead>
<tr>
<td class="rcTitlebar"><table cellspacing="0" summary="title and navigation" border="0">
<tr>
<td><a id="dtpFrom_calendar_FNP" class="rcFastPrev" title="<<" href="#"><<</a></td><td><a id="dtpFrom_calendar_NP" class="rcPrev" title="<" href="#"><</a></td><td id="dtpFrom_calendar_Title" class="rcTitle">February 2014</td><td><a id="dtpFrom_calendar_NN" class="rcNext" title=">" href="#">></a></td><td><a id="dtpFrom_calendar_FNN" class="rcFastNext" title=">>" href="#">>></a></td>
</tr>
</table></td>
</tr>
</thead><tbody>
<tr>
<td class="rcMain"><table id="dtpFrom_calendar_Top" class="rcMainTable" cellspacing="0" summary="February 2014" border="0">
<thead>
<tr class="rcWeek">
<th class="rcViewSel"> </th><th id="dtpFrom_calendar_Top_cs_1" title="Monday" abbr="Mon" scope="col">M</th><th id="dtpFrom_calendar_Top_cs_2" title="Tuesday" abbr="Tue" scope="col">T</th><th id="dtpFrom_calendar_Top_cs_3" title="Wednesday" abbr="Wed" scope="col">W</th><th id="dtpFrom_calendar_Top_cs_4" title="Thursday" abbr="Thu" scope="col">T</th><th id="dtpFrom_calendar_Top_cs_5" title="Friday" abbr="Fri" scope="col">F</th><th id="dtpFrom_calendar_Top_cs_6" title="Saturday" abbr="Sat" scope="col">S</th><th id="dtpFrom_calendar_Top_cs_7" title="Sunday" abbr="Sun" scope="col">S</th>
</tr>
</thead><tbody>
<tr class="rcRow">
<th id="dtpFrom_calendar_Top_rs_1" scope="row">5</th><td class="rcOtherMonth" title="Monday, January 27, 2014"><a href="#">27</a></td><td class="rcOtherMonth" title="Tuesday, January 28, 2014"><a href="#">28</a></td><td class="rcOtherMonth" title="Wednesday, January 29, 2014"><a href="#">29</a></td><td class="rcOtherMonth" title="Thursday, January 30, 2014"><a href="#">30</a></td><td class="rcOtherMonth" title="Friday, January 31, 2014"><a href="#">31</a></td><td class="rcWeekend" title="Saturday, February 01, 2014"><a href="#">1</a></td><td class="rcWeekend" title="Sunday, February 02, 2014"><a href="#">2</a></td>
</tr><tr class="rcRow">
<th id="dtpFrom_calendar_Top_rs_2" scope="row">6</th><td title="Monday, February 03, 2014"><a href="#">3</a></td><td title="Tuesday, February 04, 2014"><a href="#">4</a></td><td title="Wednesday, February 05, 2014"><a href="#">5</a></td><td title="Thursday, February 06, 2014"><a href="#">6</a></td><td title="Friday, February 07, 2014"><a href="#">7</a></td><td class="rcWeekend" title="Saturday, February 08, 2014"><a href="#">8</a></td><td class="rcWeekend" title="Sunday, February 09, 2014"><a href="#">9</a></td>
</tr><tr class="rcRow">
<th id="dtpFrom_calendar_Top_rs_3" scope="row">7</th><td title="Monday, February 10, 2014"><a href="#">10</a></td><td title="Tuesday, February 11, 2014"><a href="#">11</a></td><td title="Wednesday, February 12, 2014"><a href="#">12</a></td><td title="Thursday, February 13, 2014"><a href="#">13</a></td><td title="Friday, February 14, 2014"><a href="#">14</a></td><td class="rcWeekend" title="Saturday, February 15, 2014"><a href="#">15</a></td><td class="rcWeekend" title="Sunday, February 16, 2014"><a href="#">16</a></td>
</tr><tr class="rcRow">
<th id="dtpFrom_calendar_Top_rs_4" scope="row">8</th><td title="Monday, February 17, 2014"><a href="#">17</a></td><td title="Tuesday, February 18, 2014"><a href="#">18</a></td><td title="Wednesday, February 19, 2014"><a href="#">19</a></td><td title="Thursday, February 20, 2014"><a href="#">20</a></td><td title="Friday, February 21, 2014"><a href="#">21</a></td><td class="rcWeekend" title="Saturday, February 22, 2014"><a href="#">22</a></td><td class="rcWeekend" title="Sunday, February 23, 2014"><a href="#">23</a></td>
</tr><tr class="rcRow">
<th id="dtpFrom_calendar_Top_rs_5" scope="row">9</th><td title="Monday, February 24, 2014"><a href="#">24</a></td><td title="Tuesday, February 25, 2014"><a href="#">25</a></td><td title="Wednesday, February 26, 2014"><a href="#">26</a></td><td title="Thursday, February 27, 2014"><a href="#">27</a></td><td title="Friday, February 28, 2014"><a href="#">28</a></td><td class="rcOtherMonth" title="Saturday, March 01, 2014"><a href="#">1</a></td><td class="rcOtherMonth" title="Sunday, March 02, 2014"><a href="#">2</a></td>
</tr><tr class="rcRow">
<th id="dtpFrom_calendar_Top_rs_6" scope="row">10</th><td class="rcOtherMonth" title="Monday, March 03, 2014"><a href="#">3</a></td><td class="rcOtherMonth" title="Tuesday, March 04, 2014"><a href="#">4</a></td><td class="rcOtherMonth" title="Wednesday, March 05, 2014"><a href="#">5</a></td><td class="rcOtherMonth" title="Thursday, March 06, 2014"><a href="#">6</a></td><td class="rcOtherMonth" title="Friday, March 07, 2014"><a href="#">7</a></td><td class="rcOtherMonth" title="Saturday, March 08, 2014"><a href="#">8</a></td><td class="rcOtherMonth" title="Sunday, March 09, 2014"><a href="#">9</a></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table><input type="hidden" name="dtpFrom_calendar_SD" id="dtpFrom_calendar_SD" value="[]" /><input type="hidden" name="dtpFrom_calendar_AD" id="dtpFrom_calendar_AD" value="[[1980,1,1],[2099,12,30],[2014,2,25]]" /></div></td>
</tr>
</table><input id="dtpFrom_ClientState" name="dtpFrom_ClientState" type="hidden" />
</div>
</td>
</tr>
</table>
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('scriptMngr', document.getElementById('form1'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
//]]>
</script>

</div>

<script src="Keyoti_RapidSpell_Web_Common/RapidSpell-AYT.js" type="text/javascript"></script>



<script type="text/javascript">
//<![CDATA[
Sys.Application.add_init(function() {
$create(Telerik.Web.UI.RadDateInput, {"_displayText":"","_focused":false,"_initialValueAsText":"","_postBackEventReferenceScript":"__doPostBack(\u0027dtpFrom\u0027,\u0027\u0027)","_skin":"Default","_validationText":"","clientStateFieldID":"dtpFrom_dateInput_ClientState","dateFormat":"M/d/yyy","dateFormatInfo":{"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"AMDesignator":"AM","PMDesignator":"PM","DateSeparator":"/","TimeSeparator":":","FirstDayOfWeek":1,"DateSlots":{"Month":0,"Year":2,"Day":1},"ShortYearCenturyEnd":2029,"TimeInputOnly":false},"displayDateFormat":"M/d/yyy","enabled":true,"incrementSettings":{InterceptArrowKeys:true,InterceptMouseWheel:true,Step:1},"styles":{HoveredStyle: ["width:100%;", "riTextBox riHover"],InvalidStyle: ["width:100%;", "riTextBox riError"],DisabledStyle: ["width:100%;", "riTextBox riDisabled"],FocusedStyle: ["width:100%;", "riTextBox riFocused"],EmptyMessageStyle: ["width:100%;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:100%;", "riTextBox riRead"],EnabledStyle: ["width:100%;", "riTextBox riEnabled"]}}, null, null, $get("dtpFrom_dateInput"));
});
Sys.Application.add_init(function() {
$create(Telerik.Web.UI.RadCalendar, {"_DayRenderChangedDays":{},"_FormatInfoArray":[["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["January","February","March","April","May","June","July","August","September","October","November","December",""],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"dddd,MMMM dd,yyyy HH:mm:ss","dddd,MMMM dd,yyyy","HH:mm:ss","MMMM dd","ddd, dd MMM yyyy HH\u0027:\u0027mm\u0027:\u0027ss \u0027GMT\u0027","M/d/yyy","HH:mm:ss","yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss","yyyy\u0027-\u0027MM\u0027-\u0027dd HH\u0027:\u0027mm\u0027:\u0027ss\u0027Z\u0027","MMMM, yyyy","AM","PM","/",":",1],"_ViewRepeatableDays":{},"_ViewsHash":{"dtpFrom_calendar_Top" : [[2014,2,1], 1]},"_calendarWeekRule":0,"_culture":"en-IN","_enableKeyboardNavigation":false,"_enableViewSelector":false,"_firstDayOfWeek":7,"_postBackCall":"__doPostBack(\u0027dtpFrom$calendar\u0027,\u0027@@\u0027)","_rangeSelectionMode":0,"clientStateFieldID":"dtpFrom_calendar_ClientState","enableMultiSelect":false,"enabled":true,"monthYearNavigationSettings":["Today","OK","Cancel","Date is out of range.","False","True","300","1","300","1","False"],"skin":"Default","specialDaysArray":[],"stylesHash":{"DayStyle": ["", ""],"CalendarTableStyle": ["", "rcMainTable"],"OtherMonthDayStyle": ["", "rcOtherMonth"],"TitleStyle": ["", ""],"SelectedDayStyle": ["", "rcSelected"],"SelectorStyle": ["", ""],"DisabledDayStyle": ["", "rcDisabled"],"OutOfRangeDayStyle": ["", "rcOutOfRange"],"WeekendDayStyle": ["", "rcWeekend"],"DayOverStyle": ["", "rcHover"],"FastNavigationStyle": ["", "RadCalendarMonthView RadCalendarMonthView_Default"],"ViewSelectorStyle": ["", "rcViewSel"]},"useColumnHeadersAsSelectors":false,"useRowHeadersAsSelectors":false}, null, null, $get("dtpFrom_calendar"));
});
Sys.Application.add_init(function() {
$create(Telerik.Web.UI.RadDatePicker, {"_PopupButtonSettings":{ ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_animationSettings":{ShowAnimationDuration:300,ShowAnimationType:1,HideAnimationDuration:300,HideAnimationType:1},"_popupControlID":"dtpFrom_popupButton","clientStateFieldID":"dtpFrom_ClientState","focusedDate":"2014-02-25-00-00-00"}, null, {"calendar":"dtpFrom_calendar","dateInput":"dtpFrom_dateInput"}, $get("dtpFrom"));
});
Sys.Application.initialize();
//]]>
</script>
</form>
</body>
</html>
Manimozhi
#14 Posted : Tuesday, February 25, 2014 6:18:06 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Following is the code i had written in My aspx source page.

When i click the date picker again the separate text box is opening near the date picker.

Kindly let us know the fix.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="aspx" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<%@ Register TagPrefix="rapidspellweb" Namespace="Keyoti.RapidSpell" Assembly="Keyoti.RapidSpellWeb.ASP.NETv2" %>
<!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>Untitled Page</title>
<style type="text/css">
#form1
{
width: 691px;
height: 413px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>
<asp:TextBox ID="txtPlan" runat="server" Height="410px" Width="669px" TextMode="MultiLine">
</asp:TextBox>

</td>
<td>
<telerik:RadDatePicker ID="dtpFrom" runat="server" nospell=true></telerik:RadDatePicker>
</td>
</tr>
</table>
<asp:ScriptManager ID="scriptMngr" runat="server">
</asp:ScriptManager>
</div>

<script src="Keyoti_RapidSpell_Web_Common/RapidSpell-AYT.js" type="text/javascript"></script>

</form>
</body>
</html>
Dan
#15 Posted : Tuesday, February 25, 2014 4:45:59 PM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 10/20/2004
Posts: 456
The solution we gave you before, adding nospell=true only works with CalendarExtender, so here you need a different approach.

After your date picker
Code:

<telerik:RadDatePicker ID="dtpFrom" runat="server" nospell=true></telerik:RadDatePicker>


add this code:

Code:

<script type='text/javascript'>
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = '<b>dtpFrom</b>';
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = '<b>dtpFrom_dateInput</b>';
</script>


(notice that the bold part is the ID of your date picker.)




Dan Wright
Dan Wright
Manimozhi
#16 Posted : Tuesday, March 4, 2014 4:28:04 AM
Rank: Member

Groups: Registered

Joined: 9/11/2013
Posts: 21
Hi,

I had tried the script which you have given. But again it is not working. Still it is opening the text box nearby raddatepicker.

Following is the code i had written in my aspx. And, also we are using chrome browser for our development.
Code:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="aspx" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<%@ Register TagPrefix="rapidspellweb" Namespace="Keyoti.RapidSpell" Assembly="Keyoti.RapidSpellWeb.ASP.NETv2" %>
<!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>Untitled Page</title>
    <style type="text/css">
        #form1
        {
            width: 691px;
            height: 413px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table>
            <tr>
                <td>
                    <asp:TextBox ID="txtPlan" runat="server" Height="410px" Width="669px" TextMode="MultiLine">
                    </asp:TextBox>
                </td>
                <td>
                    <telerik:RadDatePicker ID="dtpFrom" runat="server" nospell="true">
                    </telerik:RadDatePicker>

                    <script type='text/javascript'>
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'dtpFrom';
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'dtpFrom_dateInput';
                    </script>

                </td>
                <td>
                    <telerik:RadDatePicker ID="dtpTo" runat="server" nospell="true">
                    </telerik:RadDatePicker>

                    <script type='text/javascript'>
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'dtpFrom';
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'dtpFrom_dateInput';
                    </script>

                </td>
            </tr>
        </table>
        <asp:ScriptManager ID="scriptMngr" runat="server">
        </asp:ScriptManager>
    </div>

    <script src="Keyoti_RapidSpell_Web_Common/RapidSpell-AYT.js" type="text/javascript"></script>

    </form>
</body>
</html>





Please let us know the fix.
Jim
#17 Posted : Tuesday, March 4, 2014 4:18:56 PM
Rank: Advanced Member

Groups: Administrators, Registered

Joined: 8/13/2004
Posts: 2,667
Location: Canada
It's because it should be this

Code:

<telerik:RadDatePicker ID="dtpFrom" runat="server" nospell="true">
                    </telerik:RadDatePicker>

                    <script type='text/javascript'>
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'dtpFrom';
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = 'dtpFrom_dateInput';
                    </script>

                </td>
                <td>
                    <telerik:RadDatePicker ID="dtpTo" runat="server" nospell="true">
                    </telerik:RadDatePicker>

                    <script type='text/javascript'>
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = '<b>dtpTo</b>';
rapidSpell.ayt_ignoreTextBoxIds[rapidSpell.ayt_ignoreTextBoxIds.length] = '<b>dtpTo_dateInput</b>';
                    </script>


If that doesn't resolve it please send the browser view source.

Jim

-your feedback is helpful to other users, thank you!

-your feedback is helpful to other users, thank you!


Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.




About | Contact | Site Map | Privacy Policy

Copyright © 2002- Keyoti Inc.