Ox.Filter, round 1
This commit is contained in:
parent
ca1965312a
commit
f5b3b56765
7 changed files with 438 additions and 45 deletions
|
|
@ -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": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue