a new approach to parsing the find query and returning some App/UI state, unambiguously
This commit is contained in:
parent
a76941932e
commit
37f91b1065
2 changed files with 121 additions and 2 deletions
|
|
@ -15,11 +15,20 @@ Ox.FilesView = function(options, self) {
|
|||
size: 24
|
||||
});
|
||||
|
||||
self.$orderButton = Ox.Button({
|
||||
title: 'Change Order of Users...'
|
||||
self.$userSelect = Ox.Select({
|
||||
items: [
|
||||
{id: 'admin', title: 'Admin', disabled: true},
|
||||
{id: 'j', title: 'User: j', checked: true},
|
||||
{id: 'rlx', title: 'User: rlx'},
|
||||
{},
|
||||
{id: 'admin', title: 'Staff', disabled: true},
|
||||
{},
|
||||
{id: 'admin', title: 'Member', disabled: true}
|
||||
]
|
||||
})
|
||||
.css({
|
||||
float: 'left',
|
||||
width: '128px',
|
||||
margin: '4px'
|
||||
})
|
||||
.appendTo(self.$toolbar);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue