With all due respect, I have invested alot of time and money in phpMyEdit, and your responses to new ideas for development have been discouraging to say the least...
YOU ARE A MAINTAINER... AND, YES, we get it, you don't want to work on this script anymore... There have been no updates since 9/16/2007. That's 4 years!
In the future, I would appreciate it if you did not post in such a discouraging manner shooting down any attempts to add to this project. Even though this is a dead project so far as the MAINTAINERS are concerned, maybe there are some of us out there who still believe in the project and want to make it better.
In that light, if anyone reads this post, and wants to make some money, please let me know by sending me an email at outerdom@outerdomain.com.
BEST WISHES.
|
I have successfully integrated spell checking for textareas into phpMyEdit using Speller Pages (GPL) at http://spellerpages.sourceforge.net/index.html.
Download the files, unzip, and upload to a folder named 'speller' in your root directory (http://yoursite.com/speller).
In the <head> section of your phpMyEdit form, or in your header.php file, place the following code:
Code: |
<!-- Source the JavaScript spellChecker object -->
<script language="javascript" type="text/javascript" src="../speller/spellChecker.js"></script>
<!-- Call a function like this to handle the spell check command -->
<script language="javascript" type="text/javascript">
function openSpellChecker() {
var speller = new spellChecker();
speller.checkTextAreas();
}
</script> |
In your phpMyEdit form, program the text area field as follows:
Code: |
$opts['fdd']['notes'] = array(
'default' => '',
'help|ACP' => '<a href="javascript:openSpellChecker();">Click to Spell Check </a>',
'input' => '',
'name' => 'Notes',
'options' => 'ACPVDLF',
'select' => 'T',
'sqlw' => 'TRIM("$val_as")',
'strip_tags|LF' => true,
'textarea' => array('rows' => '5', 'cols' => '58'),
'trimlen|LF' => 75,
'sort' => false
);
// MySQL column 33: blob - longtext |
To test, enter "change mode" for the form and right click "Click to Spell Check" in the help area next to the textarea.
Happy New Year.
Best Wishes,
JammerPro
|