Nidhin S G
Nidhin S G

Reputation: 1695

Active Admin Normal Text Field

I'm trying to bring a custom view to an active admins page.

But thing is whenever I try to put a text area field it automatically produces a custom text area field where I can set font and all, something like word editor as shown in picture.

enter image description here

Is there a way I can prevent this and get normal text editor?

Upvotes: 1

Views: 1088

Answers (1)

mkis
mkis

Reputation: 441

Yes. TinyMCE lets you specify a html class that prevents it from activating. Text fields with that class will not get transformed into the editor.

http://www.tinymce.com/wiki.php/Configuration3x:editor_deselector

Where you initialize TinyMCE, add these options:

tinyMCE.init({
    //your init code
    editor_deselector: 'selector', //replace this with the HTML class of your choice
    //more of your init code
  });

Any text area that has the specified class will not get transformed into an editor.

Upvotes: 1

Related Questions