Maplat

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

lib/Maplat/Web/Static/jquery/development-bundle/demos/accordion/hoverintent.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/accordion/index.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/accordion/mouseover.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/accordion/no-auto-height.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/accordion/sortable.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/addClass/default.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/addClass/index.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/animate/default.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/animate/index.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/categories.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/combobox.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/custom-data.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/default.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/folding.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/images/jquery_32x32.png
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/images/jqueryui_32x32.png
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/images/transparent_1x1.png
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/index.html
lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/london.xml

lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/combobox.html  view on Meta::CPAN

	<script src="../../ui/jquery.ui.position.js"></script>
	<script src="../../ui/jquery.ui.autocomplete.js"></script>
	<link rel="stylesheet" href="../demos.css">
	<style>
	.ui-button { margin-left: -1px; }
	.ui-button-icon-only .ui-button-text { padding: 0.35em; } 
	.ui-autocomplete-input { margin: 0; padding: 0.48em 0 0.47em 0.45em; }
	</style>
	<script>
	(function( $ ) {
		$.widget( "ui.combobox", {
			_create: function() {
				var self = this,
					select = this.element.hide(),
					selected = select.children( ":selected" ),
					value = selected.val() ? selected.text() : "";
				var input = $( "<input>" )
					.insertAfter( select )
					.val( value )
					.autocomplete({
						delay: 0,

lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/combobox.html  view on Meta::CPAN


						// pass empty string as value to search for, displaying all results
						input.autocomplete( "search", "" );
						input.focus();
					});
			}
		});
	})( jQuery );

	$(function() {
		$( "#combobox" ).combobox();
		$( "#toggle" ).click(function() {
			$( "#combobox" ).toggle();
		});
	});
	</script>
</head>
<body>
	
<div class="demo">

<div class="ui-widget">
	<label>Your preferred programming language: </label>
	<select id="combobox">
		<option value="">Select one...</option>
		<option value="ActionScript">ActionScript</option>
		<option value="AppleScript">AppleScript</option>
		<option value="Asp">Asp</option>
		<option value="BASIC">BASIC</option>
		<option value="C">C</option>
		<option value="C++">C++</option>
		<option value="Clojure">Clojure</option>
		<option value="COBOL">COBOL</option>
		<option value="ColdFusion">ColdFusion</option>

lib/Maplat/Web/Static/jquery/development-bundle/demos/autocomplete/index.html  view on Meta::CPAN

</head>
<body>
	<div class="demos-nav">
		<h4>Examples</h4>
		<ul>
			<li class="demo-config-on"><a href="default.html">Default functionality</a></li>
			<li><a href="remote.html">Remote datasource</a></li>
			<li><a href="remote-with-cache.html">Remote with caching</a></li>
			<li><a href="remote-jsonp.html">Remote JSONP datasource</a></li>
			<li><a href="maxheight.html">Scrollable results</a></li>
			<li><a href="combobox.html">Combobox</a></li>
			<li><a href="custom-data.html">Custom data and display</a></li>
			<li><a href="xml.html">XML data parsed once</a></li>
			<li><a href="categories.html">Categories</a></li>
			<li><a href="folding.html">Accent folding</a></li>
			<li><a href="multiple.html">Multiple values</a></li>
			<li><a href="multiple-remote.html">Multiple, remote</a></li>
		</ul>
	</div>
</body>
</html>



( run in 3.273 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )