forked from 0x2620/pandora
remove non-standard ui elements from manage data dialogs
This commit is contained in:
parent
30651bac46
commit
a72633a350
3 changed files with 56 additions and 33 deletions
|
@ -5,11 +5,6 @@ pandora.ui.namesDialog = function() {
|
||||||
width = 576 + Ox.UI.SCROLLBAR_SIZE,
|
width = 576 + Ox.UI.SCROLLBAR_SIZE,
|
||||||
numberOfNames = 0,
|
numberOfNames = 0,
|
||||||
|
|
||||||
$status = Ox.Label({
|
|
||||||
title: 'Loading...'
|
|
||||||
})
|
|
||||||
.css({float: 'left', margin: '4px'}),
|
|
||||||
|
|
||||||
$findSelect = Ox.Select({
|
$findSelect = Ox.Select({
|
||||||
items: [
|
items: [
|
||||||
{id: 'all', title: 'Find: All'}
|
{id: 'all', title: 'Find: All'}
|
||||||
|
@ -85,7 +80,6 @@ pandora.ui.namesDialog = function() {
|
||||||
width: 64
|
width: 64
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
columnsRemovable: true,
|
|
||||||
columnsVisible: true,
|
columnsVisible: true,
|
||||||
items: pandora.api.findNames,
|
items: pandora.api.findNames,
|
||||||
max: 1,
|
max: 1,
|
||||||
|
@ -95,10 +89,10 @@ pandora.ui.namesDialog = function() {
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
init: function(data) {
|
init: function(data) {
|
||||||
numberOfNames = data.items;
|
numberOfNames = data.items;
|
||||||
$status.options({
|
$status.html(
|
||||||
title: Ox.formatNumber(numberOfNames)
|
Ox.formatNumber(numberOfNames)
|
||||||
+ ' name' + (numberOfNames == 1 ? '' : 's')
|
+ ' name' + (numberOfNames == 1 ? '' : 's')
|
||||||
});
|
);
|
||||||
},
|
},
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
pandora.api.editName({
|
pandora.api.editName({
|
||||||
|
@ -143,7 +137,20 @@ pandora.ui.namesDialog = function() {
|
||||||
padding: 0,
|
padding: 0,
|
||||||
title: 'Manage Names',
|
title: 'Manage Names',
|
||||||
width: width
|
width: width
|
||||||
});
|
}),
|
||||||
|
|
||||||
|
$status = $('<div>')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
top: '4px',
|
||||||
|
left: '64px',
|
||||||
|
right: '64px',
|
||||||
|
bottom: '4px',
|
||||||
|
paddingTop: '2px',
|
||||||
|
fontSize: '9px',
|
||||||
|
textAlign: 'center',
|
||||||
|
})
|
||||||
|
.appendTo(that.$element.find('.OxButtonsbar'));
|
||||||
|
|
||||||
function updateList(key, value) {
|
function updateList(key, value) {
|
||||||
var query = {
|
var query = {
|
||||||
|
|
|
@ -5,11 +5,6 @@ pandora.ui.titlesDialog = function() {
|
||||||
width = 512 + Ox.UI.SCROLLBAR_SIZE,
|
width = 512 + Ox.UI.SCROLLBAR_SIZE,
|
||||||
numberOfTitles = 0,
|
numberOfTitles = 0,
|
||||||
|
|
||||||
$status = Ox.Label({
|
|
||||||
title: 'Loading...'
|
|
||||||
})
|
|
||||||
.css({float: 'left', margin: '4px'}),
|
|
||||||
|
|
||||||
$findSelect = Ox.Select({
|
$findSelect = Ox.Select({
|
||||||
items: [
|
items: [
|
||||||
{id: 'all', title: 'Find: All'}
|
{id: 'all', title: 'Find: All'}
|
||||||
|
@ -75,7 +70,6 @@ pandora.ui.titlesDialog = function() {
|
||||||
width: 256
|
width: 256
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
columnsRemovable: true,
|
|
||||||
columnsVisible: true,
|
columnsVisible: true,
|
||||||
items: pandora.api.findTitles,
|
items: pandora.api.findTitles,
|
||||||
keys: [],
|
keys: [],
|
||||||
|
@ -86,10 +80,10 @@ pandora.ui.titlesDialog = function() {
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
init: function(data) {
|
init: function(data) {
|
||||||
numberOfTitles = data.items;
|
numberOfTitles = data.items;
|
||||||
$status.options({
|
$status.html(
|
||||||
title: Ox.formatNumber(numberOfTitles)
|
Ox.formatNumber(numberOfTitles)
|
||||||
+ ' title' + (numberOfTitles == 1 ? '' : 's')
|
+ ' title' + (numberOfTitles == 1 ? '' : 's')
|
||||||
});
|
);
|
||||||
},
|
},
|
||||||
submit: function(data) {
|
submit: function(data) {
|
||||||
pandora.api.editTitle({
|
pandora.api.editTitle({
|
||||||
|
@ -134,7 +128,20 @@ pandora.ui.titlesDialog = function() {
|
||||||
padding: 0,
|
padding: 0,
|
||||||
title: 'Manage Titles',
|
title: 'Manage Titles',
|
||||||
width: width
|
width: width
|
||||||
});
|
}),
|
||||||
|
|
||||||
|
$status = $('<div>')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
top: '4px',
|
||||||
|
left: '64px',
|
||||||
|
right: '64px',
|
||||||
|
bottom: '4px',
|
||||||
|
paddingTop: '2px',
|
||||||
|
fontSize: '9px',
|
||||||
|
textAlign: 'center',
|
||||||
|
})
|
||||||
|
.appendTo(that.$element.find('.OxButtonsbar'));
|
||||||
|
|
||||||
function updateList(key, value) {
|
function updateList(key, value) {
|
||||||
var query = {
|
var query = {
|
||||||
|
|
|
@ -13,11 +13,6 @@ pandora.ui.usersDialog = function() {
|
||||||
numberOfUsers = 0,
|
numberOfUsers = 0,
|
||||||
userLevels = ['member', 'friend', 'staff', 'admin'],
|
userLevels = ['member', 'friend', 'staff', 'admin'],
|
||||||
|
|
||||||
$status = Ox.Label({
|
|
||||||
title: 'Loading...'
|
|
||||||
})
|
|
||||||
.css({float: 'left', margin: '4px'}),
|
|
||||||
|
|
||||||
$findSelect = Ox.Select({
|
$findSelect = Ox.Select({
|
||||||
items: [
|
items: [
|
||||||
{id: 'all', title: 'Find: All', checked: true},
|
{id: 'all', title: 'Find: All', checked: true},
|
||||||
|
@ -226,11 +221,11 @@ pandora.ui.usersDialog = function() {
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
init: function(data) {
|
init: function(data) {
|
||||||
numberOfUsers = data.items;
|
numberOfUsers = data.items;
|
||||||
$status.options({
|
$status.html(
|
||||||
title: Ox.formatNumber(numberOfUsers)
|
Ox.formatNumber(numberOfUsers)
|
||||||
+ ' user' + (numberOfUsers == 1 ? '' : 's')
|
+ ' user' + (numberOfUsers == 1 ? '' : 's')
|
||||||
+ ' (' + Ox.formatNumber(numberOfUsers) + ' registered, 0 guests)'
|
+ ' (' + Ox.formatNumber(numberOfUsers) + ' registered, 0 guests)'
|
||||||
});
|
);
|
||||||
},
|
},
|
||||||
select: function(data) {
|
select: function(data) {
|
||||||
var values;
|
var values;
|
||||||
|
@ -351,7 +346,21 @@ pandora.ui.usersDialog = function() {
|
||||||
padding: 0,
|
padding: 0,
|
||||||
title: 'Manage Users',
|
title: 'Manage Users',
|
||||||
width: width
|
width: width
|
||||||
});
|
}),
|
||||||
|
|
||||||
|
$status = $('<div>')
|
||||||
|
.css({
|
||||||
|
position: 'absolute',
|
||||||
|
top: '4px',
|
||||||
|
left: '4px',
|
||||||
|
right: '256px',
|
||||||
|
bottom: '4px',
|
||||||
|
paddingTop: '2px',
|
||||||
|
fontSize: '9px',
|
||||||
|
textAlign: 'center',
|
||||||
|
})
|
||||||
|
.appendTo(that.$element.find('.OxButtonsbar'));
|
||||||
|
|
||||||
|
|
||||||
function renderUserForm(userData) {
|
function renderUserForm(userData) {
|
||||||
var $checkbox;
|
var $checkbox;
|
||||||
|
|
Loading…
Reference in a new issue