mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
98b539171b
Summary of the changes: * Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against * Build: Load jQuery & Migrate via HTTPS * Build: Add package-lock.json to .gitignore * Build: Update jQuery Migrate from 3.0.0 to 3.1.0 * Build: Allow to run tests against jQuery 3.x-git * Build: Fix formatting according to JSCS rules * Build: Disable JSCS for the inlined jQuery Color * All: Switch from $.isArray to Array.isArray (jQuery.isArray will be removed in jQuery 4.0) * All: Switch from `$.isFunction( x )` to `typeof x === "function"` (jQuery.isFunction will be removed in jQuery 4.0) * All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0 * Effects: Fix a timing issue in a variable declaration. Previously, a jQuery object was created, chained & assigned to a variable that was then accessed in a callback used inside of this chained definition. Due to a timing difference in when the callback fired for the first time in latest jQuery master, it was being called before the variable was defined. * Tests: Make dialog & draggable unit tests less strict (newest jQuery returns fractional results in some cases, making comparisons fail when there's a tiny difference) * All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim will be deprecated in jQuery 3.5) Closes gh-1901
64 lines
1.9 KiB
HTML
64 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery UI Autocomplete - XML data parsed once</title>
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<style>
|
|
.ui-autocomplete-loading {
|
|
background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
|
|
}
|
|
</style>
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
<script src="../bootstrap.js">
|
|
function log( message ) {
|
|
$( "<div/>" ).text( message ).prependTo( "#log" );
|
|
$( "#log" ).attr( "scrollTop", 0 );
|
|
}
|
|
|
|
$.ajax({
|
|
url: "london.xml",
|
|
dataType: "xml",
|
|
success: function( xmlResponse ) {
|
|
var data = $( "geoname", xmlResponse ).map(function() {
|
|
return {
|
|
value: $( "name", this ).text() + ", " +
|
|
( String.prototype.trim.call( $( "countryName", this ).text() ) ||
|
|
"(unknown country)" ),
|
|
id: $( "geonameId", this ).text()
|
|
};
|
|
}).get();
|
|
$( "#birds" ).autocomplete({
|
|
source: data,
|
|
minLength: 0,
|
|
select: function( event, ui ) {
|
|
log( ui.item ?
|
|
"Selected: " + ui.item.value + ", geonameId: " + ui.item.id :
|
|
"Nothing selected, input was " + this.value );
|
|
}
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="ui-widget">
|
|
<label for="birds">London matches: </label>
|
|
<input id="birds" />
|
|
</div>
|
|
|
|
<div class="ui-widget" style="margin-top:2em; font-family:Arial">
|
|
Result:
|
|
<div id="log" style="height: 200px; width: 300px; overflow: auto;" class="ui-widget-content"></div>
|
|
</div>
|
|
|
|
<div class="demo-description">
|
|
<p>This demo shows how to retrieve some XML data, parse it using jQuery's methods, then provide it to the autocomplete as the datasource.</p>
|
|
<p>This should also serve as a reference on how to parse a remote XML datasource - the parsing would just happen for each request within the source-callback.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|