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
4
votes
1 answer

Magic Suggest - Pre-select multiple items from MVC Model

I'm looking for a way to populate the Magic Suggest control with multiple values. I am using ASP.NET MVC and would like to set these values based on properties in the model. Part 1: Magic Suggest Support for Multiple Values? A related question on…
PortageMonkey
  • 2,675
  • 1
  • 27
  • 32
4
votes
1 answer

How to clear value from magic suggest

How to clear input value from magic suggest. While selecting value from select box, Based on the select box selection Magic suggest value need to clear or magic suggest need to be initialise again
TELMILA
  • 83
  • 9
4
votes
1 answer

MagicSuggest - set magic suggest list with pre selected items

I am using MagicSuggest to populate tag list from following JSON data: [ { "Id": "money", "name": "money" }, { "Id": "education", "name": "education" } ] while I am going to edit page, need to…
user2435172
  • 51
  • 1
  • 4
3
votes
2 answers

Set JSON value default in MagicSuggest while page loading

Set JSON value default in MagicSuggest while page loading. Html code:
Js code: $(document).ready(function(){ var tags = $('#ms-ajaxConfig').magicSuggest({ data : [{ "id" : "255", "name" :…
siva
  • 593
  • 3
  • 8
  • 19
3
votes
1 answer

MagicSuggest does not display the initial tags (values)

I am using MagicSuggest ( http://nicolasbize.github.io/magicsuggest/ ) in my app. Everything displays and functions perfect, but for whatever reason, the values are not displayed no matter what I try! Can anybody explain to me what is wrong with…
3
votes
1 answer

MagicSuggest loading image

This is a great plugin indeed, but i'm afraid it doesn't support a loading image for ajax requests yet. I tried to bind it using an "ajaxSend" event with no luck. I tried:
ms1 =…
tblancog
  • 332
  • 2
  • 14
3
votes
1 answer

Set default selection to Magic suggest

I have a Magic suggest box in my application. For that I want to set default selected values. I have JSON object as well to bind the data. But I didn't find any option like how to make them selected. Is there any option in Magic suggest? Please…
naren
  • 87
  • 1
  • 10
3
votes
1 answer

How to retrieve the id attribute value in MagicSuggest?

I am using a couple of MagicSuggest controls on my page, with the following code:
... var ms =…
Ze Jibe
  • 989
  • 2
  • 11
  • 29
3
votes
2 answers

MagicSuggest dynamic ajax source

I'm using MagicSuggest for auto completing an input text, the autocomplete feed its very big so i cant download it complete, in their example they provide this code: JAVASCRIPT $(document).ready(function() { var jsonData = []; …
DomingoSL
  • 14,920
  • 24
  • 99
  • 173
2
votes
0 answers

Magic suggest for numeric input

I am using magicSuggest with server-side filtering for some of my input fields. In a form, I want to use it with Google API Places in order to get the postal code for places. The thing is that I want the user to insert only numeric values to my…
Anastasios Selmani
  • 3,579
  • 3
  • 32
  • 48
2
votes
2 answers

change Magicsuggest max selection warning message

when i add 1 employee in magic suggest then it will give a warning message "You cannot choose more than 1 items" that message i want to change and do it "You cannot choose more than 1 Employee"
Raju Parmar
  • 105
  • 10
2
votes
1 answer

Magicsuggest change placeholder text

I've been working with Magicsuggest for a couple of days and I'm trying to change the placeholder text so the Magicsuggest acts like single selection. I have the first one: HTML
LAffair
  • 1,968
  • 5
  • 31
  • 60
2
votes
4 answers

Is there a Vue JS plugin similar to magicSuggest?

I need a plugin to replicate the functionality I've been enjoying using magicSuggest. I have found many autocomplete plugins for Vue but none that come bundled with tags. Try any of the examples on this page to see how your selection is saved as a…
Clinton Green
  • 9,697
  • 21
  • 68
  • 103
2
votes
1 answer

How to set focus to MagicSuggest Input element

I am using MagicSuggest for multiselect.In my form I am using tab to move to next field.When I press tab from one field,it should move to magicsuggest input field.For that i have given as $("#mselect").focus(); //not working $("#mselect…
rekha s
  • 577
  • 5
  • 7
  • 24
2
votes
1 answer

Set Value in MagicSuggest dynamically

I am using MagicSuggest for multiselect textbox with dropdown.I don't know how to set values dynamically.I have tried var ms =$('#fruits').magicSuggest({ //placeholder: 'Type some real or fake fruits', //toggleOnClick: true, …
rekha s
  • 577
  • 5
  • 7
  • 24
1
2 3 4 5 6