add Ox.ArrayInput, more Ox.ListMap UI

This commit is contained in:
rolux 2011-05-21 19:56:15 +02:00
commit 6a33b9cb97
8 changed files with 381 additions and 101 deletions

View file

@ -581,14 +581,17 @@ Ox.load('Geo', function() {
},
{
options: {
min: 0,
max: 100,
type: "float"
},
title: "Float Input (0.0 - 100.0)"
},
{
options: {
min: 0,
max: 255,
type: "integer"
type: "int"
},
title: "Integer Input (0 - 255)"
},
@ -596,8 +599,7 @@ Ox.load('Geo', function() {
options: {
clear: true,
id: "integerClear",
max: 255,
type: "integer"
type: "int"
},
title: "Integer Input with Clear Button"
},
@ -605,8 +607,7 @@ Ox.load('Geo', function() {
options: {
arrows: true,
id: "integerArrows",
max: 255,
type: "integer"
type: "int"
},
title: "Integer Input with Arrows"
},