Announcement

Do not use the forums to submit bug reports, feature requests or patches, submit a New Ticket instead.

#1 2005-05-06 19:33:05

camille
Xinha Community Member
Registered: 2005-05-06
Posts: 12

anchor does not appear

In the example that I downloaded from the nightly download link, that plugin works fine. After installing xinha into  my page, everything works fine except the anchorlink. The button does not appear in the toolbar. I really don't know how to activate or the cause for it.
Someone an idea ? Please...

Offline

#2 2005-05-07 14:40:39

camille
Xinha Community Member
Registered: 2005-05-06
Posts: 12

Re: anchor does not appear

I'm not talking about the html codes that are hidden in the html-codes but about the button in the toolbar. In the htmlarea.js-file there seem to be code for the anchor-function. ALso in the plugin directory I have the InsertAnchor directory.
So how do I let appear the anchor button ? I use an ASP-platform (windows). Everything works great except this.

Last edited by camille (2005-05-07 14:41:27)

Offline

#3 2005-05-09 10:03:07

niko
Xinha Authority
From: Salzburg/Austria
Registered: 2005-02-14
Posts: 338

Re: anchor does not appear

post your config (the javascript where you generate and configure xinha)


Niko

Offline

#4 2005-05-09 12:19:18

camille
Xinha Community Member
Registered: 2005-05-06
Posts: 12

Re: anchor does not appear

As you see the texteditor works fine, only the InsertAnchor button does not appear.
A few plugins are not activated, that's my choice.

Snapphoto of the editor : http://www.webjungle.be/webmanager.gif



my_config.js :

----- begin my_config.js ------------------------------------------------------

    xinha_editors = null;
    xinha_init    = null;
    xinha_config  = null;
    xinha_plugins = null;
    // This contains the names of textareas we will make into Xinha editors
    xinha_init = xinha_init ? xinha_init : function()
    {
      /** STEP 1 ***************************************************************
       * First, what are the plugins you will be using in the editors on this
       * page.  List all the plugins you will need, even if not all the editors
       * will use all the plugins.
       ************************************************************************/
      xinha_plugins = xinha_plugins ? xinha_plugins :
      [
       'CharacterMap',
       'ContextMenu',
       'FullScreen',
       'ListType',
//       'SpellChecker',
//       'Stylist',
//       'SuperClean',
       'TableOperations',
      ];
             // THIS BIT OF JAVASCRIPT LOADS THE PLUGINS, NO TOUCHING  smile
             if(!HTMLArea.loadPlugins(xinha_plugins, xinha_init)) return;
      /** STEP 2 ***************************************************************
       * Now, what are the names of the textareas you will be turning into
       * editors?
       ************************************************************************/
      xinha_editors = xinha_editors ? xinha_editors :
      [
        'myTextArea'
      ];
      /** STEP 3 ***************************************************************
       * We create a default configuration to be used by all the editors.
       * If you wish to configure some of the editors differently this will be
       * done in step 4.
       * If you want to modify the default config you might do something like this.
       *   xinha_config = new HTMLArea.Config();
       *   xinha_config.width  = 640;
       *   xinha_config.height = 420;
       *************************************************************************/
       xinha_config = xinha_config ? xinha_config : new HTMLArea.Config();
      /** STEP 3 ***************************************************************
       * We first create editors for the textareas.
       * You can do this in two ways, either
       *   xinha_editors   = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);
       * if you want all the editor objects to use the same set of plugins, OR;
       *   xinha_editors = HTMLArea.makeEditors(xinha_editors, xinha_config);
       *   xinha_editors['myTextArea'].registerPlugins(['Stylist','FullScreen']);
       *
       xinha_editors['anotherOne'].registerPlugins(['CSS','SuperClean']);
       * if you want to use a different set of plugins for one or more of the
       * editors.
       ************************************************************************/
      xinha_editors   = HTMLArea.makeEditors(xinha_editors, xinha_config, xinha_plugins);
      /** STEP 4 ***************************************************************
       * If you want to change the configuration variables of any of the
       * editors,  this is the place to do that, for example you might want to
       * change the width and height of one of the editors, like this...
       *   xinha_editors.myTextArea.config.width  = 640;
       *   xinha_editors.myTextArea.config.height = 480;
       ************************************************************************/
      /** STEP 5 ***************************************************************
       * Finally we "start" the editors, this turns the textareas into
       * Xinha editors.
       ************************************************************************/
      HTMLArea.startEditors(xinha_editors);
    }
    window.onload = xinha_init;

----- end my_config.js ------------------------------------------------------------------------------------

Last edited by camille (2005-05-09 12:37:47)

Offline

#5 2005-05-09 13:11:05

niko
Xinha Authority
From: Salzburg/Austria
Registered: 2005-02-14
Posts: 338

Re: anchor does not appear

you don't load the InsertAncor-plugin!!
add it to xinha_plugins

InsertAncor is not a build-in-feature of xinha.


Niko

Offline

#6 2005-05-09 13:44:39

camille
Xinha Community Member
Registered: 2005-05-06
Posts: 12

Re: anchor does not appear

-> The directorie is present in the plugings directorie.

Even if I put InsertAnchor between the list of plugins, it don't show.
(anchor with a "h" or without "h")

xinha_plugins = xinha_plugins ? xinha_plugins :
      [


-->    'InsertAnchor',    that won't do the trick !

       'CharacterMap',
       'ContextMenu',
       'FullScreen',
       'ListType',
//       'SpellChecker',
//       'Stylist',
//       'SuperClean',
       'TableOperations',
      ];

Offline

#7 2005-05-12 19:22:20

camille
Xinha Community Member
Registered: 2005-05-06
Posts: 12

Re: anchor does not appear

for one reason or another it works when inserting into the list : 'InsertAnchor',
before it didn't worked with this, now it does.

Offline

Board footer

Powered by FluxBB