2

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 Answers2

3

You should use the maxSelectionRenderer. Example:

$('#msDivId').magicSuggest({
    maxSelection: 1,
    maxSelectionRenderer: function () {
        return "You cannot choose more than 1 Employee";
    }
});
Stevie
  • 70
  • 10
0

Just remove the Property maxSelection : 1 or set to N based on your requirement.

Peter Tretyakov
  • 3,380
  • 6
  • 38
  • 54