Loading....
Recent Article links:

Plugin Facebook User list

“Ultimate User list tagging Like Facebook 2.0″ for TagHim v4.0 (Ultimate)

You can download Plugin Facebook Users like here.

1. Description

Ultimate User list tagging Like Facebook” for TagHim v4.0 (Ultimate) this plugin is making possible with your user database integration.

User list have full customization flexibility.

! IMPORTANT
This plugin is working for TagHim Ultimate license only
If you owned General license for TagHim you can upgrade it to Ultimate by contacting us

2. Plugin Installation

To use this plugin you need:
1. Connect to TagHim object:
– copy Sticky Tagging Border display plugin to the folder where TagHim script
– connect plugin: load=nameslist
<script src="taghim/tagging.js?load=nameslist" type="text/javascript"></script>

To connect more than one plugin you can simply list all plugins following way

tagging.js?load=zoomer,labels,border,nameslist,reenter

2. Plugin properties. See 4.3. Object configuration from main documentations setup for TagHim V4.0).

Name Value Default Description
allowNamelistMode bool false Turn ON/OFF plugin.
namelistAltEmail bool false Turn ON/OFF e-mail function if no user in list exists
namelistOnly bool false Turn ON/OFF restriction select users only from userlist.
namelistErrorFunction function null This funcion is called if no names from list selected. Only apear if ‘namelistOnly’.

3. CSS Styles. “[STYLE]listDiv”. For example: paramieter ‘STYLE’ set to “mikkey_” hense “mikkey_listDiv”, “[STYLE]listmail” => “mikkey_listmail”.


.mikkey1_listDiv{
	width:155px;
	height: 70px;
	overflow:auto;
	border:2px solid #70c8f0;
	background:#ffffff;
	margin: 2px 0;
	text-align:left;
	cursor:auto;
	color:#000000;
}
.mikkey1_listDiv div{
	color:#000000;
	font-size:14px;
}

.mikkey1_listmail {
	margin:3px;
	display:none;
}
.mikkey1_listmail input{

	width:90%;
	height:20px;
	font-size:14px;
}

4. Plugin is working automatically after tagging object is created.
5. 5. Extended plugin properties and methods.

Properties
[object].captions.emailLabel – Your own description will apear infront E-Mail input field. By default ‘Insert E-mail:’;
Example:
[object].captions.emailLabel = 'Friend email';

Methods
addNamesList( options ) – this metod creating user list.
Example:
[object].addNamesList( { '1' : 'User no 1', '5' : 'User no 5', '4' : 'User no 4' } );
Tree users will be added to the list.

addNameToList( id, value ) – this metod creating one user instance.
Example:
[object].addNameToList( 10, 'Some other user' );
This reccords replasing/adding User with identificator 10.

To restrick doublicatating tagging instances use DisabledNames:

addNameToDisabled( id ) – this method adding users to restricted list, hense this users not displaying on tagging user list. You can add one instance a time.
Example:
[object].addNameToDisabled( 10 );
User with ID 10 will not apear on tagging user list.

clearDisabledNames() – this method removing all names from restricted list
Example::
[object].clearDisabledNames();