/autocomplete.js Secret
Created
October 1, 2013 11:47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
formatItem: function(item) { | |
return item; | |
}, | |
formatMatch: function(item) { | |
//It will display matched item as per your input. | |
return item; | |
}, | |
formatResult: function(item) { | |
//It will display final out put inside the text box | |
return item; | |
}, | |
result : function(event,item){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment