JqxInput: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
== Example == | == Example == | ||
= | <pre> | ||
Dim countries | |||
countries = Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria") | |||
Function setInput() | |||
$("#ipSymbol").jqxInput({ placeHolder: "Enter a country.", minLength: 2, source: countries, items: 6 }); | |||
End Function | |||
</pre> | |||
== Output == | == Output == |
Revision as of 14:20, 17 May 2013
Description
The Input widget provides suggestions while you type into the field. The datasource is a simple array, provided to the control using the "source" property.
Properties and Methods
See the complete documentation at jqWidget's site: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxinput/jquery-input-getting-started.htm
Example
Dim countries countries = Array("Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antarctica", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria") Function setInput() $("#ipSymbol").jqxInput({ placeHolder: "Enter a country.", minLength: 2, source: countries, items: 6 }); End Function
Output
See above.