Questions tagged [magicsuggest]

MagicSuggest is a highly configurable jQuery plugin for Auto-suggest combo with bootstrap theme.

MagicSuggest is a highly configurable jQuery plugin for Auto-suggest combo with bootstrap theme.

Features:

  • the side trigger is visible and the selected items appear within the combo itself.
  • suggestions will appear as the user starts typing
  • the user can toggle the suggestions using arrow keys
  • the user can delete selected items by using backspace
  • the user can hold the ctrl key to select multiple items
  • the user is free to enter new input using the enter key after having entered text

There are many configuration options that allow you to customize the component

81 questions
0
votes
2 answers

Linked/chained MagicSuggest dropdowns?

I am trying to build a set of linked/chained multiselect boxes using MagicSuggest and a php query. So, first I build a MagicSuggest box with a function for when ms1 is changed: $(document).ready(function() { var ms1 = $('#ms1').magicSuggest({ …
user1381239
  • 553
  • 1
  • 4
  • 5
0
votes
0 answers

Event to capture every render of MagicSuggest box

I am applying CSS to the 'selected item' boxes of a Magicsuggest box, each time the 'selectionchange' event is fired. However, it appears these boxes are re-rendered every time the input div loses or gains focus. With Firefox, I have caught these…
Chris
  • 5,882
  • 2
  • 32
  • 57
0
votes
2 answers

Transliteration and fuzzy search, like Google suggestions

I need to do a fuzzy search with transliteration of the characters, for example: I have an ASP.NET application, database, which has a table with a list of Spanish words (200,000 entries), I also have a page with an input field. The point is that I…
-1
votes
1 answer

JS: Make a callback return the output of another callback

I am using the Javascript magicsuggest plugin. This plugin has a callback selectionRenderer that allows you to change the html of a selection before it's inserted. What I'm trying to do, is to change that selection html based on user input. So the…
Nikita240
  • 1,377
  • 2
  • 14
  • 29
-1
votes
1 answer

Adding comma after each word in JavaScript

I have selected tag input and I can choose multiple items using MagicSuggest plugin. The problem is that the value that I get after the choice is a string separated without a comma. Like: MVCPHPASP.Net I want to change it to: MVC,PHP,ASP.Net The…
user4851087
-2
votes
3 answers

MagicSuggest fails with PHP

I am using MagicSuggest to autocomplete tags. This code works perfect: $(document).ready(function() { var ms3 = $('#ms3').magicSuggest({ data:…
1 2 3 4 5
6