Loading....
Recent Article links:

Forum

You must be logged in to post Login

Search Forums:


 






display multiple tag boxes at once

No Tags
UserPost

February 16, 2010


Michael

I am wondering how i can display multiple tag boxes at once. I need to display a make shift grid and need to display multiple tags (including boxes) at the same time. I have a licence under dev.loveschool.com

 

February 16, 2010


admin

You can display multiple tag description at once by calling method

taghim.tagOnImage( true );

for example:

javascript code will look following:

var taghim = new tagging(
  'taghim',
  'REGISTRATION_CODE',
  'cropp',
  2,
  {
   ajaxRequestURL : 'tag_new.php',
   ajaxReturnID : 'ret1',
   style : 'mikkey',
   description : false,
   autoInit : false,
   displayOnInit : true,
   minWidth : 50,
   minHeight : 50,
   zoom : true,
   zoomParameters : { "1x" : { 'w' : 60, 'h' : 90 }, "2x" : { 'w' : 120, 'h' : 180 } }
  }
);

taghim.tagOnImage( true );
new Ajax.Updater( taghim.options.ajaxReturnID, taghim.options.ajaxRequestURL, { parameters: "action=showTags&variable=

taghim&imageId=2″ } );

current version does not support display of borders only description display on init.

But we think that tag border display will be added in feature releases.

February 16, 2010


Michael

Is it possible to have the multiple borders done soon? What is the restriction…Is it possible to have multiple return div tags to draw different borders? I just need a way around it at the moment, some way where I can display multiple borders at once.

February 16, 2010


admin

we expecting to have new version soon.

The new version will have an optional function to display tag borders on init (onn/off).

February 16, 2010


admin

it is done for TagHim v.3 release.

You have to modify
tag.php file, line
mysql_connect( "localhost", "YOUR_MYSQL_LOGIN", "YOUR_MYSQL_PASSWORD" )or die( mysql_error() );

and replace on index.html line '

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', // REGISTER CODE (INSERT YOUTS) with your registration code.
No Tags