From 37970c3685bfdfd0339f0b7dffed737dc9be41b9 Mon Sep 17 00:00:00 2001 From: jzaefferer Date: Mon, 12 Apr 2010 13:43:41 +0200 Subject: Effects demos: cleanup --- demos/effect/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'demos') diff --git a/demos/effect/index.html b/demos/effect/index.html index b914c96c5..cecceb6cd 100644 --- a/demos/effect/index.html +++ b/demos/effect/index.html @@ -11,7 +11,7 @@

Examples

diff --git a/demos/autocomplete/multiple-remote.html b/demos/autocomplete/multiple-remote.html new file mode 100644 index 000000000..5e0f4b50b --- /dev/null +++ b/demos/autocomplete/multiple-remote.html @@ -0,0 +1,75 @@ + + + + + jQuery UI Autocomplete multiple demo + + + + + + + + + + + +
+ +
+ + +
+ +
+ +
+

+Usage: Enter at least two characters to get bird name suggestions. Select a value to continue adding more names. +

+

+This is an example showing how to use the source-option along with some events to enable autocompleting multiple values into a single field. +

+
+ + + diff --git a/demos/autocomplete/multiple.html b/demos/autocomplete/multiple.html index 5e0f4b50b..908cfe6ce 100644 --- a/demos/autocomplete/multiple.html +++ b/demos/autocomplete/multiple.html @@ -12,6 +12,7 @@ -- cgit v1.2.3 From 6a59746d1d97cb24bafe50c1434d9398be9c7585 Mon Sep 17 00:00:00 2001 From: Scott González Date: Wed, 21 Apr 2010 10:02:53 -0400 Subject: Autocomplete: Added demo for accent folding. Proof of concept for #5219 - Autocomplete: Support for accent-folding. --- demos/autocomplete/folding.html | 64 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 demos/autocomplete/folding.html (limited to 'demos') diff --git a/demos/autocomplete/folding.html b/demos/autocomplete/folding.html new file mode 100644 index 000000000..d5bc71e9d --- /dev/null +++ b/demos/autocomplete/folding.html @@ -0,0 +1,64 @@ + + + + + jQuery UI Autocomplete Accent Folding Demo + + + + + + + + + + + +
+ +
+
+ + +
+
+ +
+ +
+

+The autocomplete field uses a custom source option which will match results that have accented characters even when the text field doesn't contain accented characters. However if the you type in accented characters in the text field it is smart enough not to show results that aren't accented. +

+

+Try typing "Jo" to see "John" and "Jörn", then type "Jö" to see only "Jörn". +

+
+ + + -- cgit v1.2.3