DIR : /home/kozerus/public_html/pn/uize/site-source/examples/hierarchical-selector.html
/home/kozerus/public_html/pn/uize/site-source/examples
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hierarchical Selector | JavaScript Examples | UIZE JavaScript Framework</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="keywords" content="form Uize.Widget.Tree.Select"/>
<meta name="description" content="See a demo of the tree select widget being used to let the user choose a value from a hierarchical value list using the browser's built-in select tag."/>
<link rel="alternate" type="application/rss+xml" title="UIZE JavaScript Framework - Latest News" href="http://www.uize.com/latest-news.rss"/>
<link rel="stylesheet" href="../css/page.css"/>
<link rel="stylesheet" href="../css/page.example.css"/>
<style type="text/css">
select {
display:block;
width:200px;
margin:3px;
}
</style>
</head>
<body>
<script type="text/javascript" src="../js/Uize.js"></script>
<h1 class="header">
<a id="page-homeLink" href="../index.html" title="UIZE JavaScript Framework home"></a>
<a href="../index.html" class="homeLinkText" title="UIZE JavaScript Framework home">UIZE JavaScript Framework</a>
</h1>
<div class="main">
<h1 class="document-title">
<a href="../javascript-examples.html" class="breadcrumb breadcrumbWithArrow">JAVASCRIPT EXAMPLES</a>
Hierarchical Selector
<div class="pageActionsShell">
<div id="page-actions" class="pageActions"><a href="source-code/hierarchical-selector.html" class="buttonLink">SOURCE</a></div>
</div>
</h1>
<!-- select nodes that make up the UI of the Uize.Widget.SelectTree object -->
<center>
<div id="page-buttons" style="margin: 10px 0;"></div>
<form>
<select id="page_selectTree-level1"></select>
<select id="page_selectTree-level2"></select>
<select id="page_selectTree-level3"></select>
<select id="page_selectTree-level4"></select>
<select id="page_selectTree-level5"></select>
<input id="page_selectTree-submitButton" type="submit" value="SUBMIT" onclick="return false">
</form>
</center>
</div>
<!-- JavaScript code to make the static tree select UI "come alive" -->
<script type="text/javascript">
Uize.require (
[
'UizeSite.Page.Example.library',
'UizeSite.Page.Example',
'Uize.Widget.Tree.Select',
'Uize.Widgets.Container.Widget',
'Uize.Widgets.Button.Widget',
'Uize.Test.TestData.Animals',
'Uize.Test.TestData.Plants'
],
function () {
'use strict';
/*** create the example page widget ***/
var page = window.page = UizeSite.Page.Example ();
/*** create the Uize.Widget.SelectTree object ***/
var selectTree = page.addChild ('selectTree',Uize.Widget.Tree.Select,{items:Uize.Test.TestData.Animals ()});
/*** add the populator buttons ***/
var buttons = page.addChild ('buttons',Uize.Widgets.Container.Widget,{built:false});
buttons.addChild (
'populateWithAnimals',
Uize.Widgets.Button.Widget,
{
text:'POPULATE WITH ANIMALS',
action:function () {selectTree.set ({items:Uize.Test.TestData.Animals ()})}
}
);
buttons.addChild (
'populateWithPlants',
Uize.Widgets.Button.Widget,
{
text:'POPULATE WITH PLANTS',
action:function () {selectTree.set ({items:Uize.Test.TestData.Plants ()})}
}
);
/*** wire up the page widget ***/
page.wireUi ();
}
);
</script>
</body>
</html>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer