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"
            Asked
            
        
        
            Active
            
        
            Viewed 756 times
        
    2 Answers
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
 
        surya koti
        
- 1
 - 1
 
- 
                    i want to remove this line – Raju Parmar Nov 03 '17 at 11:23