Sorry, as you type isn't going to work with ExtJS and even a regular textarea, it seems something is going on under the covers with ExtJS that is not compatible with what we do to the textarea. Static underlining would probably work (where the user presses a button and the underlines appear in the textarea which also becomes read only until the button is pressed again) - would you like info on that?
You can do dialog check very easily
app.jsCode:
/*global Ext:false */
Ext.onReady(function() {
Ext.create('Ext.form.FormPanel', {
title: 'Sample TextArea',
width: 400,
bodyPadding: 10,
renderTo: 'panel',
items: [{
xtype: 'textareafield',
grow: true,
name: 'message',
fieldLabel: 'Message',
anchor: '100%'
}]
});
});
index.htmlCode:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Ext.form.field.TextArea Example</title>
<link rel="stylesheet" href="http://cdn.sencha.io/try/extjs/4.1.0/resources/css/ext-all-gray.css"/>
<script src="a.rapidspellweb?t=r&n=RapidSpell-DIALOG.js"></script>
<script src="http://cdn.sencha.io/try/extjs/4.1.0/ext-all-debug.js"></script>
<script src="app.js"></script>
</head>
<body>
<form>
<div id='panel'>
</div>
</form>
<input type="button" onclick="rapidSpell.dialog_spellCheck()" value="Spell"/>
</body>
</html>
(This assumes you've setup the web.xml per our installation section in the Help).
http://keyoti.com/produc...on%20&%20Deployment.htm
Note it's important that the textarea is added to something
inside of a <form>.
Best
Jim
-your feedback is helpful to other users, thank you!-your feedback is helpful to other users, thank you!