Dropdown
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update - Add ArticleMetaData) |
|||
| (4 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{ArticleMetaData <!-- v1.2 --> | |
| + | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Qt SDK 1.1.4]) --> | ||
| + | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20091109 | ||
| + | |author= [[User:Kbwiki]] | ||
| + | }} | ||
| + | [[Category:Guarana UI]] | ||
=Inheritance= | =Inheritance= | ||
| − | <code>Nokia. | + | <code> |
| − | |- Nokia. | + | Nokia.DropDown |
| + | |- Nokia.Widget | ||
| + | |- Nokia.Class (basic class) | ||
| + | </code> | ||
=1 - Description= | =1 - Description= | ||
Latest revision as of 13:36, 30 July 2012
Article Metadata
Contents |
Inheritance
Nokia.DropDown
|- Nokia.Widget
|- Nokia.Class (basic class)
1 - Description
The Drop Down component behaves similarly to the Options Menu component.
2 - Visual Design
3 - Component Dependencies
3.1 CSS
<!-- Themeroller CSS --> <link rel="stylesheet" href="themes/themeroller/<theme>/Themeroller.css" type="text/css" media="screen"> <!-- Specific Theme/Resolution CSS --> <link rel="stylesheet" href="/themes/nokia/ext-theme/<theme>/<resolution>/custom.css" type="text/css" media="screen">
3.2 Javascript
<!-- jQuery file --> <script src="/lib/jquery/jQuery.js" type="text/javascript" charset="utf-8"></script> <!-- Guarana file --> <script src="/lib/Guarana.js" type="text/javascript" charset="utf-8"></script>
4 - Functional Specifications/Requirements
4.1 - Options
- element: 'selector'
- jQuery selector or the DOM reference to become the container of the component.
- items[]: string
- Defines the list of component items.
- maximize: boolean
- Defines whether the component is created as maximised.
4.2 - Events - Callbacks
- create: function()
- Scope: [this.element]
4.3 - Methods
- showOptions: function()
- Shows the component options.
- return [void]
- hideOptions: function()
- Hides the component options.
- return [void]
- select: function(i, event)
- Selects specific item i in the component.
- return [void]
- getSelected: function()
- Returns the selected item in the component.
- return [Object]
4.4 - Default options
- maximize: false
5 - Component Demo
5.1 HTML
<div id="dropdown"></div>
5.2 Javascript
window.dropdown = new Nokia.DropDown({
element: '#dropdown',
items: [
{
label: "First option",
value: 'some value',
select: function(item, event) {
alert('Drop Down Clicked on: ' + item.label);
}
},
{
label: "Second option",
value: 'some value',
select: function(item, event) {
alert('Drop Down Clicked on: ' + item.label);
}
},
{
label: "Third option",
value: 'some value',
select: function(item, event) {
alert('Drop Down Clicked on: ' + item.label);
}
},
]
});
6 - Nokia WRT Browser Compatibility:
| ▴ | S60 3.1 | S60 3.2 | S60 5.0 |
| DropDown | NO | YES | YES |


