<!-- Tagbox . Start --> <ul class="tagbox" data-name="field_name"> <li data-value="1" data-selected="selected">Tag one</li> <li data-value="2" data-selected="selected">Tag two</li> <li data-value="3" >Tag three</li> <li data-value="4" >Tag four</li> <li data-value="5" >Tag five</li> <li data-value="6" >Tag six</li> </ul> <!-- Tagbox . Start -->
// Scan tagboxes basekit.components.tagboxes.scan(scope);
// Initialize tagboxes basekit.components.tagboxes.initialize(scope);
// Update tagboxes basekit.components.tagboxes.update(scope,id,name,value,title,options);
// Set scope var scope= $('.tagbox'); // Reset tagboxes basekit.components.tagboxes.reset(scope);
// Set scope var scope= $('.tagbox'); // Validate tagboxes basekit.components.tagboxes.validate(scope);
// Set scope var scope= $('.tagbox'); // Persist tagboxes basekit.components.tagboxes.persist(scope);
// Set scope var scope= $('.tagbox').first(); // Persist tagboxes basekit.components.tagboxes.refresh(scope);
// Set scope var scope= $('.tagbox'); // Lock tagboxes basekit.components.tagboxes.lock(scope);
// Set scope var scope= $('.tagbox'); // Unlock tagboxes basekit.components.tagboxes.unlock(scope);
// Set scope var scope= $('.tagbox'); // Disable tagboxes basekit.components.tagboxes.disable(scope);
// Set scope var scope= $('.tagbox'); // Enable tagboxes basekit.components.tagboxes.enable(scope);
// Show suggestions basekit.components.tagboxes.suggestions_show(scope);
// Hide suggestions basekit.components.tagboxes.suggestions_hide();
// Filter suggestions basekit.components.tagboxes.suggestions_filter(scope);
// Add tags basekit.components.tagboxes.tags_add(scope,suggestion);
// Remove tags basekit.components.tagboxes.tags_remove(scope);