MyBB Community Forums
[For 1.8] Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Plugins (https://community.mybb.com/forum-73.html)
+---- Forum: Plugin Releases (https://community.mybb.com/forum-102.html)
+---- Thread: [For 1.8] Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) (/thread-158367.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - expat - 2015-11-01

better for mobile this way?


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - expat - 2015-11-06

this disappeared in a new theme, how can i debug it?

what edit are done?

and i have deactivated and activated it

EDIT: editing the codebutton gets it back


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - niere8 - 2015-11-07

(2015-10-31, 01:16 AM)niere8 Wrote:
(2015-10-12, 08:10 AM)martec Wrote:
(2015-10-12, 06:18 AM)Omar G. Wrote: Right, thanks for the info. Is there anyway to load the editor only after clicking inside the text area instead then? I was sure this was already answered.

try:
in codebutquick template:

find:

$(document).ready(function() {

replace:

($.fn.on || $.fn.live).call($(document), 'focus', '#message', function () {

find:

{$sourcemode}

add after:
MyBBEditor.focus();

Thank you, it was also my problem after the update to 6.1.2, now works, it doesn't scroll down more, thanks Big Grin

Is it normal that quick editor is shown only when I click on textare in quickreply?

Ehm sorry, do you have problem on New Thread textarea message now?

Because now when I load a newthread page I scroll down to textarea and textarea is odds, also height is more short:

[Image: iH7qrVV.png]

Textarea blocked on 88px height Sad

<textarea tabindex="4" dir="ltr" style="width: 1384px; height: 88px;"></textarea>


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - martec - 2015-11-07

(2015-11-07, 10:58 AM)niere8 Wrote:
(2015-10-31, 01:16 AM)niere8 Wrote:
(2015-10-12, 08:10 AM)martec Wrote:
(2015-10-12, 06:18 AM)Omar G. Wrote: Right, thanks for the info. Is there anyway to load the editor only after clicking inside the text area instead then? I was sure this was already answered.

try:
in codebutquick template:

find:

$(document).ready(function() {

replace:

($.fn.on || $.fn.live).call($(document), 'focus', '#message', function () {

find:

{$sourcemode}

add after:
MyBBEditor.focus();

Thank you, it was also my problem after the update to 6.1.2, now works, it doesn't scroll down more, thanks Big Grin

Is it normal that quick editor is shown only when I click on textare in quickreply?

Ehm sorry, do you have problem on New Thread textarea message now?

Because now when I load a newthread page I scroll down to textarea and textarea is odds, also height is more short:

[Image: iH7qrVV.png]

Textarea blocked on 88px height Sad

<textarea tabindex="4" dir="ltr" style="width: 1384px; height: 88px;"></textarea>

new thread?
what the relation?
edit about in codebutquick template and not in codebuttons template. Or coincidence, or you making something wrong.


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - niere8 - 2015-11-07

(2015-11-07, 11:31 AM)martec Wrote:
(2015-11-07, 10:58 AM)niere8 Wrote:
(2015-10-31, 01:16 AM)niere8 Wrote:
(2015-10-12, 08:10 AM)martec Wrote:
(2015-10-12, 06:18 AM)Omar G. Wrote: Right, thanks for the info. Is there anyway to load the editor only after clicking inside the text area instead then? I was sure this was already answered.

try:
in codebutquick template:

find:

$(document).ready(function() {

replace:

($.fn.on || $.fn.live).call($(document), 'focus', '#message', function () {

find:

{$sourcemode}

add after:
MyBBEditor.focus();

Thank you, it was also my problem after the update to 6.1.2, now works, it doesn't scroll down more, thanks Big Grin

Is it normal that quick editor is shown only when I click on textare in quickreply?

Ehm sorry, do you have problem on New Thread textarea message now?

Because now when I load a newthread page I scroll down to textarea and textarea is odds, also height is more short:

[Image: iH7qrVV.png]

Textarea blocked on 88px height Sad

<textarea tabindex="4" dir="ltr" style="width: 1384px; height: 88px;"></textarea>

new thread?
what the relation?
edit about in codebutquick template and not in codebuttons template. Or coincidence, or you making something wrong.

Right, I have tried on Default Theme with other editors (Mybb, Office etc) and always when I load the newthread page it scrolls down to textarea. All Default.

If I remove {$codebuttons} it works well, without focus on message textarea..So I have to understand where is the problem Sad

Thanks the same, I think it is a problem of Mybb or Chrome or I don't know

Ehm...this happens also here on Mybb Community, with Chrome, maybe I have to load the editor only after clicking inside the text area, like in quickthread..


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - martec - 2015-11-07

(2015-11-07, 05:43 PM)niere8 Wrote: Ehm...this happens also here on Mybb Community, with Chrome, maybe I have to load the editor only after clicking inside the text area, like in quickthread..

so i can't made anything...
not related with this plugin...


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - niere8 - 2015-11-07

Well, for now I have "fixed" the problem with your code..better than nothing Big Grin

On Ungrouped Templates - codebuttons:

Replace $(function() { with ($.fn.on || $.fn.live).call($(document), 'focus', '#message', function () {

and after {$sourcemode} add MyBBEditor.focus();

Now I have still only the problem of height, it is always blocked to 88px..mah, other editors for MyBB there weren't? :/


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - martec - 2015-11-07

(2015-11-07, 06:43 PM)niere8 Wrote: Well, for now I have "fixed" the problem with your code..better than nothing Big Grin

On Ungrouped Templates - codebuttons:

Replace $(function() { with ($.fn.on || $.fn.live).call($(document), 'focus', '#message', function () {

and after {$sourcemode} add MyBBEditor.focus();

Now I have still only the problem of height, it is always blocked to 88px..mah, other editors for MyBB there weren't? :/

after
($.fn.on || $.fn.live).call($(document), 'focus', '#message', function () {

you can add something like

$('#message').height('xxxpx');

replace xxx with height that you want...

anyway this isn't correct thread to ask question of newthread... because not has any relation with this plugin


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - Adzdon - 2015-11-09

Great plugin, this is what i needed. But it's not showing on neither quick reply boxes?
BTW I'm using the "Modern" Editor Style?


RE: Quick Advanced Editor 6.1.2 (Show sceditor in quick reply and quick edit) - motorola30 - 2016-06-24

Hi
How can I add a new button to the " Quick Advanced Editor 6.1.2 " ???

I downloaded the plugin from the link below
http://community.mybb.com/mods.php?action=view&pid=28