1
0
Fork 0
forked from 0x2620/oxjs

Ox.Filter, round 1

This commit is contained in:
rlx 2011-01-23 04:59:16 +00:00
commit f5b3b56765
7 changed files with 438 additions and 45 deletions

View file

@ -418,6 +418,31 @@ $(function() {
},
title: "FormElementGroup (Input and Select)"
},
{
options: {
elements: [
new Ox.Label({
title: "Match",
overlap: "right",
}),
new Ox.Select({
id: "select_",
items: [
{id: "all", title: "all"},
{id: "any", title: "any"},
],
overlap: "right",
width: 48
}),
new Ox.Label({
title: "of the following conditions",
}),
],
float: "left",
id: "formElementGroupLabels"
},
title: "foo"
},
{
options: {
elements: [
@ -717,6 +742,52 @@ $(function() {
{title: "", width: 0}
]
}
},
{
options: {
id: 'debug',
inputs: [
new Ox.Checkbox({
id: 'tttt',
width: 16
}),
new Ox.FormElementGroup({
elements: [
new Ox.Input({
//overlap: "right",
width: 64
}),
new Ox.Select({
items: [
{id: "items", title: "items"},
{},
{id: "hours", title: "hours"},
{id: "days", title: "days"},
{},
{id: "GB", title: "GB"},
],
overlap: "left",
width: 64
}),
],
float: "right",
width: 128
}),
new Ox.Select({
items: [
{id: "title", title: "Title"},
{id: "director", title: "Director"},
],
width: 128
})
],
separators: [
{title: 'Limit to', width: 64},
{title: 'sorted by', width: 64}
],
//width: 480
},
title: "bar"
}
],
"Label": [