From eecbde22a6b338785ac8e1991858ba7dab976eae Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Wed, 20 Jan 2010 14:00:14 +0000 Subject: eol-style and mime-type --- demos/autocomplete/combobox.html | 252 +++++++++++++++--------------- demos/autocomplete/custom-data.html | 182 ++++++++++----------- demos/autocomplete/default.html | 84 +++++----- demos/autocomplete/index.html | 40 ++--- demos/autocomplete/remote-jsonp.html | 170 ++++++++++---------- demos/autocomplete/remote-with-cache.html | 152 +++++++++--------- demos/autocomplete/remote.html | 112 ++++++------- 7 files changed, 496 insertions(+), 496 deletions(-) (limited to 'demos/autocomplete') diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index a77ff7d61..7ac171b63 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -1,126 +1,126 @@ - - - - jQuery UI Autocomplete Combobox Demo - - - - - - - - - - - - - -
- -
- - -
- -
- -
-

-A custom widget built by composition of Autocomplete and Button. You can either type something into the field to get filtered suggestions based on your input, or use the button to get the full list of selections. -

-

-The input is read from an existing select-element for progressive enhancement, passed to Autocomplete with a customized source-option. -

-
- - - + + + + jQuery UI Autocomplete Combobox Demo + + + + + + + + + + + + + +
+ +
+ + +
+ +
+ +
+

+A custom widget built by composition of Autocomplete and Button. You can either type something into the field to get filtered suggestions based on your input, or use the button to get the full list of selections. +

+

+The input is read from an existing select-element for progressive enhancement, passed to Autocomplete with a customized source-option. +

+
+ + + diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html index 1b112344b..5be147f29 100644 --- a/demos/autocomplete/custom-data.html +++ b/demos/autocomplete/custom-data.html @@ -1,91 +1,91 @@ - - - - jQuery UI Autocomplete Custom Data Demo - - - - - - - - - - - - -
- - - - -

-
- -
-

-You can use your own custom data formats and displays by simply overriding the default focus and select actions. -

-

-Try typing "j" to get a list of projects or just press the down arrow. -

-
- - - + + + + jQuery UI Autocomplete Custom Data Demo + + + + + + + + + + + + +
+ + + + +

+
+ +
+

+You can use your own custom data formats and displays by simply overriding the default focus and select actions. +

+

+Try typing "j" to get a list of projects or just press the down arrow. +

+
+ + + diff --git a/demos/autocomplete/default.html b/demos/autocomplete/default.html index 1fbfd2d2a..d0f88859e 100644 --- a/demos/autocomplete/default.html +++ b/demos/autocomplete/default.html @@ -1,42 +1,42 @@ - - - - jQuery UI Autocomplete Default Demo - - - - - - - - - - - -
- -
- - -
- -
- -
-

-The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try. -

-

-The datasource is a simple JavaScript array, provided to the widget using the source-option. -

-
- - - + + + + jQuery UI Autocomplete Default Demo + + + + + + + + + + + +
+ +
+ + +
+ +
+ +
+

+The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try. +

+

+The datasource is a simple JavaScript array, provided to the widget using the source-option. +

+
+ + + diff --git a/demos/autocomplete/index.html b/demos/autocomplete/index.html index d4cc75038..ffca515e0 100644 --- a/demos/autocomplete/index.html +++ b/demos/autocomplete/index.html @@ -1,20 +1,20 @@ - - - - jQuery UI Autocomplete Demos - - - -
-

Examples

- -
- - + + + + jQuery UI Autocomplete Demos + + + +
+

Examples

+ +
+ + diff --git a/demos/autocomplete/remote-jsonp.html b/demos/autocomplete/remote-jsonp.html index 0349e5a2c..46ac87d81 100644 --- a/demos/autocomplete/remote-jsonp.html +++ b/demos/autocomplete/remote-jsonp.html @@ -1,85 +1,85 @@ - - - - jQuery UI Autocomplete Remote JSONP datasource demo - - - - - - - - - - - - -
- -
- - - Powered by geonames.org -
- -
- Result: -
-
- -
- -
-

-The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are cities, displayed when at least two characters are entered into the field. -

-

-In this case, the datasource is the geonames.org webservice. While only the city name itself ends up in the input after selecting an element, more info is displayed in the suggestions to help find the right entry. That data is also available in callbacks, as illustrated by the Result area below the input. -

-
- - - + + + + jQuery UI Autocomplete Remote JSONP datasource demo + + + + + + + + + + + + +
+ +
+ + + Powered by geonames.org +
+ +
+ Result: +
+
+ +
+ +
+

+The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are cities, displayed when at least two characters are entered into the field. +

+

+In this case, the datasource is the geonames.org webservice. While only the city name itself ends up in the input after selecting an element, more info is displayed in the suggestions to help find the right entry. That data is also available in callbacks, as illustrated by the Result area below the input. +

+
+ + + diff --git a/demos/autocomplete/remote-with-cache.html b/demos/autocomplete/remote-with-cache.html index aa0fb2eb5..4f470d17b 100644 --- a/demos/autocomplete/remote-with-cache.html +++ b/demos/autocomplete/remote-with-cache.html @@ -1,76 +1,76 @@ - - - - jQuery UI Autocomplete Remote with caching demo - - - - - - - - - - - -
- -
- - -
- -
- Result: -
-
- -
- -
-

-The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are bird names, displayed when at least two characters are entered into the field. -

-

-Similar to the remote datasource demo, though this adds some local caching to improve performance. The cache here saves just one query, and could be extended to cache multiple values, one for each term. -

-
- - - + + + + jQuery UI Autocomplete Remote with caching demo + + + + + + + + + + + +
+ +
+ + +
+ +
+ Result: +
+
+ +
+ +
+

+The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are bird names, displayed when at least two characters are entered into the field. +

+

+Similar to the remote datasource demo, though this adds some local caching to improve performance. The cache here saves just one query, and could be extended to cache multiple values, one for each term. +

+
+ + + diff --git a/demos/autocomplete/remote.html b/demos/autocomplete/remote.html index c183b5adb..cef9b549b 100644 --- a/demos/autocomplete/remote.html +++ b/demos/autocomplete/remote.html @@ -1,56 +1,56 @@ - - - - jQuery UI Autocomplete Remote datasource demo - - - - - - - - - - - -
- -
- - -
- -
- Result: -
-
- -
- -
-

-The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are bird names, displayed when at least two characters are entered into the field. -

-

-The datasource is a server-side script which returns JSON data, specified via a simple URL for the source-option. In addition, the minLength-option is set to 2 to avoid queries that would return too many results and the select-event is used to display some feedback. -

-
- - - + + + + jQuery UI Autocomplete Remote datasource demo + + + + + + + + + + + +
+ +
+ + +
+ +
+ Result: +
+
+ +
+ +
+

+The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are bird names, displayed when at least two characters are entered into the field. +

+

+The datasource is a server-side script which returns JSON data, specified via a simple URL for the source-option. In addition, the minLength-option is set to 2 to avoid queries that would return too many results and the select-event is used to display some feedback. +

+
+ + + -- cgit v1.2.3