Cannot find the way of bringing editor back after it was destroyed.

I have an image which launches elRTE onclick:

<img src='images/edit.png' width='25' height='25' class='editorlaunch' />

$('.editorlaunch').live('click', function() {
        $('.editorlaunch').hide();
        $('.content').elrte(opts);
});

Handler which destroys elRTE:

elRTE.prototype.save = function() {
        $('.content').elrte('destroy');
        $('.editorlaunch').show();
};

When I click on image again - editor does NOT show up. No JS errors.

Please help.

Just asked developer on elrte forum, he replied: this maybe a bug. But I still need to get this working. =))

Here is a simple HTML to re-create the problem:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>some</title>
<link rel='stylesheet' href='styles/jquery-ui.custom.css' type='text/css' media='screen' charset='utf-8' />
<link rel='stylesheet' href='styles/elrte.min.css' type='text/css' media='screen' charset='utf-8' />
<script src='js/jquery.min.js' type='text/javascript'></script>
<script src='js/jquery-ui-custom.min.js' type='text/javascript' charset='utf-8'></script>
<script src='js/elrte.min.js' type='text/javascript' charset='utf-8'></script>
<script src='js/i18n/elrte.ru.js' type='text/javascript' charset='utf-8'></script>
<script type='text/javascript'>
    $(document).ready(function() {
        var opts = {
            cssClass : 'el-rte',
            lang     : 'ru',
            toolbar  : 'complete',
            cssfiles : ['styles/elrte-inner.css'],
            styleWithCSS: true,
            toolbar: 'maxi'
        }

        $('.editorlaunch').live('click', function() {
            $('.editorlaunch').hide();
            $('.content').elrte(opts);
        });

        elRTE.prototype.save = function() {
            $('.content').elrte('destroy');
            $('.editorlaunch').show();
            $('.editorlaunch').append('(will not work)');
        };

    });
</script>
</head>
<body>
<div class="container">
  <div class="content">
    test <button class='editorlaunch'>edit</button>
  </div>
</div>
</body>
</html>
link|improve this question

Any luck with this? I'm stuck here, too. – fordareh Feb 1 at 11:18
@fordareh: nope, wrote my own editor instead. =)) – Radio Feb 4 at 23:50
feedback

1 Answer

up vote 0 down vote accepted

Developer assumed this may be a bug. http://elrte.org/redmine/boards/4/topics/3972

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.