a new approach to parsing the find query and returning some App/UI state, unambiguously

This commit is contained in:
rlx 2011-08-23 19:19:41 +00:00
commit 37f91b1065
2 changed files with 121 additions and 2 deletions

View file

@ -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);