2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-20 01:09:03 +00:00
Commit Graph

81 Commits

Author SHA1 Message Date
Gediminas Backevicius
19f0e6b6c5 Method 'clear' which is used to clear autocomplete's state was included. This method can be used when data source is changed. 2013-04-09 11:27:26 +03:00
Tomas Kirda
364fd6a1f0 Rev for 1.2.5 release 2013-03-27 14:01:24 -05:00
Tomas Kirda
7af8d62091 Make query value to be set by the plugin. Fixes #48 2013-02-21 17:07:33 -06:00
Tomas Kirda
a362ce1b06 Call transformResult on the value returned from the server. Fixes #49 2013-02-21 16:25:07 -06:00
Tomas Kirda
52151c267b Split one test into two. 2013-02-21 11:34:47 -06:00
Tomas Kirda
a439496a29 Merge pull request #47 from gedbac/master
Parameters were passed to method 'onSearchStart'
2013-02-18 07:49:43 -08:00
Gediminas Backevicius
91df66d4da Parameters were passed to method 'onSearchStart'
We need to add extra parameter to search criteria
2013-02-18 16:40:20 +02:00
Tomas Kirda
0add15ec72 Rev for 1.2.4 release 2013-02-08 14:51:45 -06:00
Tomas Kirda
3264901000 Merge pull request #33 from ericsaboia/patch-1
Removing empty query validation on value change
2013-02-08 11:58:24 -08:00
Tomas Kirda
3757adddbd Merge pull request #36 from jesseditson/master
Added JSONP support (via new dataType option)
2013-02-08 11:56:03 -08:00
Tomas Kirda
a64be996a8 Merge pull request #42 from nilsga/master
Fix for issue #40
2013-02-08 11:47:42 -08:00
Nils-Helge Garli Hegvik
83108c1f14 Issue #40 - Only ignore value change when selection is made by pressing the enter key 2013-02-08 07:57:06 +01:00
Jesse Ditson
f1f104d354 update for #36 - added documentation for option 2013-02-04 12:47:21 -08:00
Jesse Ditson
171744b665 support response being an object (after jquery default parsing) and passing jsonp as a dataType in addition to string type 2013-01-29 22:35:39 -10:00
Eric Saboia
b87a208066 Removing empty query validation on value change
Removing empty query validation on value change, so I can set 'minChars' to 0 and show suggestions when the user click on input.

Exemple:

var $autocomplete = new $.Autocomplete($('#wishlist_name')[0], {
	lookup: wishlist_types,
	minChars: 0,
});

$('#wishlist_name').focus(function(){
	$autocomplete.onValueChange();
});
2013-01-25 18:18:26 -02:00
Tomas Kirda
56195317c8 Version bump for plugins.jquery.com 2013-01-20 22:03:48 -06:00
Tomas Kirda
f6d2d39fc0 Remove v from the version string. 2013-01-20 21:47:49 -06:00
Tomas Kirda
d5a57cce9b Remove JS from the root, seems like it is not required by plugins.jquery.com 2013-01-20 21:28:21 -06:00
Tomas Kirda
2849a66c52 Rename jquery plugin manifest. 2013-01-20 21:16:52 -06:00
Tomas Kirda
71d13e0ca2 Rename plugin name inside the manifest. 2013-01-20 20:56:51 -06:00
Tomas Kirda
59b42707ed Add plugin js to root to support http://plugins.jquery.com 2013-01-20 20:41:55 -06:00
Tomas Kirda
4fa2e12c87 Update manifest tag to match tag. 2013-01-20 20:26:30 -06:00
Tomas Kirda
1319d3f862 Make plugin name lowercase. 2013-01-20 20:24:10 -06:00
Tomas Kirda
b65d5ccf48 Add package manifest. 2013-01-20 20:10:36 -06:00
Tomas Kirda
b77771b326 Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete 2013-01-20 19:42:50 -06:00
Tomas Kirda
c4e422edcc Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete 2013-01-20 19:42:25 -06:00
Tomas Kirda
f2a8e91746 Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete 2013-01-20 19:34:14 -06:00
Tomas Kirda
0bbf4a176e Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete
Conflicts:
	dist/jquery.autocomplete.js
	dist/jquery.autocomplete.min.js
2013-01-20 19:33:50 -06:00
Tomas Kirda
2ec23c191d Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete
Conflicts:
	dist/jquery.autocomplete.js
	dist/jquery.autocomplete.min.js
2013-01-20 19:30:58 -06:00
Tomas Kirda
3023235768 Release v1.2.2 2013-01-20 19:28:48 -06:00
Tomas Kirda
5689c5a3b8 Release v1.2.2 2013-01-20 18:53:04 -06:00
Tomas Kirda
3344e46030 Fix spacing. 2013-01-20 18:52:18 -06:00
Tomas Kirda
a10c00c3ec Add parameter name test. 2013-01-20 18:51:44 -06:00
Tomas Kirda
e2309c1533 Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete 2013-01-20 15:18:31 -06:00
Tomas Kirda
e97ad17209 Implement appendTo option. 2013-01-20 15:17:04 -06:00
Tomas Kirda
067fda3a39 Merge branch 'develop' of github.com:devbridge/jQuery-Autocomplete into develop 2013-01-20 14:39:44 -06:00
Tomas Kirda
074252a8cb Deselect active element when mouse leaves suggestions container. Fixes #26 2013-01-20 14:38:55 -06:00
Tomas Kirda
2afb5fc517 Deselect active element when mouse leaves suggestions container 2013-01-20 14:36:27 -06:00
Tomas Kirda
56437a2ec5 Add autoSelectFirst option. 2013-01-20 14:26:30 -06:00
Tomas Kirda
b6482b8a89 Change formatting to make JSLint happy. 2013-01-20 14:09:09 -06:00
Tomas Kirda
999dc67b03 Merge pull request #28 from nilsga/master
Fixed some typos in the documentation
2013-01-17 06:23:46 -08:00
Nils-Helge Garli Hegvik
4fce3383f3 Fixed som doc typos 2013-01-17 07:40:21 +01:00
Tomas Kirda
d93af49a5e Merge pull request #25 from nilsga/master
Allow for configurable name of query request parameter and custom response format.
2013-01-16 12:21:20 -08:00
Nils-Helge Garli Hegvik
4ccc809a00 Fixed format issue 2013-01-16 12:24:28 +01:00
Nils-Helge Garli Hegvik
b92ac02ba7 Added support for custom query and search result format 2013-01-16 12:21:42 +01:00
Tomas Kirda
ffa963663a Merge branch 'master' of github.com:devbridge/jQuery-Autocomplete
Conflicts:
	src/jquery.autocomplete.js
2013-01-15 12:37:42 -06:00
Tomas Kirda
bd0829c7bf Update dist files 2013-01-15 12:25:11 -06:00
Tomas Kirda
32857e7132 Add lookupFilter function that can customized. 2013-01-15 11:53:05 -06:00
Tomas Kirda
d7102f4001 Map this to that to achieve better compression. 2013-01-15 11:50:00 -06:00
Tomas Kirda
21760cee19 Use single var per function 2013-01-15 11:17:47 -06:00