mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-20 11:48:31 -06:00
With a 27420 row query, pgAdmin III runs the query in 5.873s on my laptop. pgAdmin 4 now takes ~1s.
914 lines
23 KiB
JavaScript
914 lines
23 KiB
JavaScript
/***
|
|
* Contains JSON SlickGrid editors.
|
|
* @module Editors
|
|
* @namespace Slick
|
|
*/
|
|
|
|
(function ($) {
|
|
// register namespace
|
|
$.extend(true, window, {
|
|
"Slick": {
|
|
"Editors": {
|
|
"pgText": pgTextEditor,
|
|
"JsonText": JsonTextEditor,
|
|
"CustomNumber": CustomNumberEditor,
|
|
// Below editor will read only editors, Just to display data
|
|
"ReadOnlyText": ReadOnlyTextEditor,
|
|
"ReadOnlyCheckbox": ReadOnlyCheckboxEditor,
|
|
"Checkbox": CheckboxEditor, // Override editor to implement checkbox with three states
|
|
"ReadOnlypgText": ReadOnlypgTextEditor,
|
|
"ReadOnlyJsonText": ReadOnlyJsonTextEditor
|
|
}
|
|
}
|
|
});
|
|
|
|
// return wrapper element
|
|
function getWrapper() {
|
|
return $("<div class='pg_text_editor' />");
|
|
}
|
|
|
|
// return textarea element
|
|
function getTextArea() {
|
|
return $("<textarea class='pg_textarea text-12' hidefocus rows=5'>");
|
|
}
|
|
|
|
// Generate and return editor buttons
|
|
function getButtons(editable) {
|
|
var $buttons = $("<div class='pg_buttons' />"),
|
|
label = editable ? 'Cancel': 'OK';
|
|
button_type = editable ? 'btn-danger' : 'btn-primary';
|
|
|
|
if (editable) {
|
|
var $save_button = $("<button class='btn btn-primary fa fa-lg fa-save long_text_editor pg-alertify-button'>Save</button>")
|
|
.appendTo($buttons);
|
|
}
|
|
|
|
$cancel_button = $("<button class='btn " + button_type + " fa fa-lg fa-times long_text_editor pg-alertify-button'>"+ label +"</button>")
|
|
.appendTo($buttons);
|
|
return $buttons;
|
|
}
|
|
|
|
/*
|
|
* This function handles the [default] and [null] values for cells
|
|
* if row is copied, otherwise returns the editor value.
|
|
* @param {args} editor object
|
|
* @param {item} row cell values
|
|
* @param {state} entered value
|
|
* @param {column_type} type of column
|
|
*/
|
|
function setValue(args, item, state, column_type) {
|
|
// declare a 2-d array which tracks the status of each updated cell
|
|
// If a cell is edited for the 1st time and state is null,
|
|
// set cell value to [default] and update its status [row][cell] to 1.
|
|
// If same cell is edited again, and kept blank, set cell value to [null]
|
|
|
|
// If a row is copied
|
|
var grid = args.grid;
|
|
if (item.is_row_copied) {
|
|
if (!grid.copied_rows) {
|
|
grid.copied_rows = [[]];
|
|
}
|
|
|
|
var active_cell = grid.getActiveCell(),
|
|
row = active_cell['row'],
|
|
cell = active_cell['cell'],
|
|
last_value = item[args.column.pos],
|
|
last_value = (column_type === 'number') ?
|
|
(_.isEmpty(last_value) || last_value) : last_value;
|
|
|
|
item[args.column.field] = state;
|
|
if (last_value && _.isNull(state) &&
|
|
(_.isUndefined(grid.copied_rows[row]) ||
|
|
_.isUndefined(grid.copied_rows[row][cell]))
|
|
) {
|
|
item[args.column.field] = undefined;
|
|
if (grid.copied_rows[row] == undefined) grid.copied_rows[row] = [];
|
|
grid.copied_rows[row][cell] = 1;
|
|
}
|
|
}
|
|
else {
|
|
item[args.column.field] = state;
|
|
}
|
|
}
|
|
|
|
function calculateEditorPosition(position, $wrapper) {
|
|
var $edit_grid = $wrapper.parent().find('#datagrid');
|
|
var _elem_height = $edit_grid.height(),
|
|
is_hidden, _position;
|
|
// We cannot display editor partially visible so we will lift it above select column
|
|
if(position.top > _elem_height) {
|
|
is_hidden = position.bottom - _elem_height;
|
|
}
|
|
|
|
if(is_hidden) {
|
|
_position = position.top - is_hidden;
|
|
} else {
|
|
_position = position.top-7;
|
|
}
|
|
position.top = _position;
|
|
|
|
var grid_width = $edit_grid.width(),
|
|
popup_width = $wrapper.width() + 32;
|
|
popup_width += position.left;
|
|
|
|
if(popup_width > grid_width) {
|
|
position.left -= (popup_width - grid_width);
|
|
}
|
|
return position;
|
|
}
|
|
|
|
// Text data type editor
|
|
function pgTextEditor(args) {
|
|
var $input, $wrapper;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
var $container = $("body");
|
|
|
|
$wrapper = getWrapper().appendTo($container);
|
|
$input = getTextArea().appendTo($wrapper);
|
|
$buttons = getButtons(true).appendTo($wrapper);
|
|
|
|
$buttons.find("button:first").on("click", this.save);
|
|
$buttons.find("button:last").on("click", this.cancel);
|
|
$input.bind("keydown", this.handleKeyDown);
|
|
|
|
scope.position(args.position);
|
|
$input.focus().select();
|
|
};
|
|
|
|
this.handleKeyDown = function (e) {
|
|
if (e.which == $.ui.keyCode.ENTER && e.ctrlKey) {
|
|
scope.save();
|
|
} else if (e.which == $.ui.keyCode.ESCAPE) {
|
|
e.preventDefault();
|
|
scope.cancel();
|
|
} else if (e.which == $.ui.keyCode.TAB && e.shiftKey) {
|
|
e.preventDefault();
|
|
args.grid.navigatePrev();
|
|
} else if (e.which == $.ui.keyCode.TAB) {
|
|
e.preventDefault();
|
|
args.grid.navigateNext();
|
|
}
|
|
};
|
|
|
|
this.save = function () {
|
|
args.commitChanges();
|
|
};
|
|
|
|
this.cancel = function () {
|
|
$input.val(defaultValue);
|
|
args.cancelChanges();
|
|
};
|
|
|
|
this.hide = function () {
|
|
$wrapper.hide();
|
|
};
|
|
|
|
this.show = function () {
|
|
$wrapper.show();
|
|
};
|
|
|
|
this.position = function (position) {
|
|
calculateEditorPosition(position, $wrapper);
|
|
$wrapper
|
|
.css("top", position.top)
|
|
.css("left", position.left)
|
|
}
|
|
|
|
this.destroy = function () {
|
|
$wrapper.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$input.focus();
|
|
};
|
|
|
|
// When text editor opens
|
|
this.loadValue = function (item) {
|
|
var col = args.column;
|
|
|
|
if (_.isUndefined(item[args.column.field]) && col.has_default_val) {
|
|
$input.val(defaultValue = "");
|
|
}
|
|
else if (item[args.column.field] === "") {
|
|
$input.val(defaultValue = "''");
|
|
}
|
|
else {
|
|
$input.val(defaultValue = item[args.column.field]);
|
|
$input.select();
|
|
}
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
var value = $input.val();
|
|
// If empty return null
|
|
if (value === "") {
|
|
return null;
|
|
}
|
|
// single/double quotes represent an empty string
|
|
// If found return ''
|
|
else if (value === "''" || value === '""') {
|
|
return '';
|
|
}
|
|
else {
|
|
// If found string literals - \"\", \'\', \\'\\' and \\\\'\\\\'
|
|
// then remove slashes.
|
|
value = value.replace("\\'\\'", "''");
|
|
value = value.replace('\\"\\"', '""');
|
|
value = value = value.replace(/\\\\/g, '\\');
|
|
return value;
|
|
}
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
setValue(args, item, state, 'text');
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
// Use _.isNull(value) for comparison for null instead of
|
|
// defaultValue == null, because it returns true for undefined value.
|
|
if ($input.val() == "" && _.isUndefined(defaultValue)) {
|
|
return false;
|
|
} else {
|
|
return (!($input.val() == "" && _.isNull(defaultValue))) &&
|
|
($input.val() != defaultValue);
|
|
}
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator($input.val());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
// JSON data type editor
|
|
function JsonTextEditor(args) {
|
|
var $input, $wrapper;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
var $container = $("body");
|
|
|
|
$wrapper = getWrapper().appendTo($container);
|
|
$input = getTextArea().appendTo($wrapper);
|
|
$buttons = getButtons(true).appendTo($wrapper);
|
|
|
|
$buttons.find("button:first").on("click", this.save);
|
|
$buttons.find("button:last").on("click", this.cancel);
|
|
$input.bind("keydown", this.handleKeyDown);
|
|
|
|
scope.position(args.position);
|
|
$input.focus().select();
|
|
};
|
|
|
|
this.handleKeyDown = function (e) {
|
|
if (e.which == $.ui.keyCode.ENTER && e.ctrlKey) {
|
|
scope.save();
|
|
} else if (e.which == $.ui.keyCode.ESCAPE) {
|
|
e.preventDefault();
|
|
scope.cancel();
|
|
} else if (e.which == $.ui.keyCode.TAB && e.shiftKey) {
|
|
e.preventDefault();
|
|
args.grid.navigatePrev();
|
|
} else if (e.which == $.ui.keyCode.TAB) {
|
|
e.preventDefault();
|
|
args.grid.navigateNext();
|
|
}
|
|
};
|
|
|
|
this.save = function () {
|
|
args.commitChanges();
|
|
};
|
|
|
|
this.cancel = function () {
|
|
$input.val(defaultValue);
|
|
args.cancelChanges();
|
|
};
|
|
|
|
this.hide = function () {
|
|
$wrapper.hide();
|
|
};
|
|
|
|
this.show = function () {
|
|
$wrapper.show();
|
|
};
|
|
|
|
this.position = function (position) {
|
|
calculateEditorPosition(position, $wrapper);
|
|
$wrapper
|
|
.css("top", position.top)
|
|
.css("left", position.left)
|
|
}
|
|
|
|
this.destroy = function () {
|
|
$wrapper.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$input.focus();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
var data = defaultValue = item[args.column.field];
|
|
if (data && typeof data === "object" && !Array.isArray(data)) {
|
|
data = JSON.stringify(data);
|
|
} else if (Array.isArray(data)) {
|
|
var temp = [];
|
|
$.each(data, function(i, val) {
|
|
if (typeof val === "object") {
|
|
temp.push(JSON.stringify(val));
|
|
} else {
|
|
temp.push(val)
|
|
}
|
|
});
|
|
data = "[" + temp.join() + "]";
|
|
}
|
|
$input.val(data);
|
|
$input.select();
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
if ($input.val() === "") {
|
|
return null;
|
|
}
|
|
return $input.val();
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
setValue(args, item, state, 'text');
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
if ($input.val() == "" && _.isUndefined(defaultValue)) {
|
|
return false;
|
|
} else {
|
|
return (!($input.val() == "" && _.isNull(defaultValue))) && ($input.val() != defaultValue);
|
|
}
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator($input.val());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
// Text data type editor
|
|
function ReadOnlypgTextEditor(args) {
|
|
var $input, $wrapper;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
var $container = $("body");
|
|
|
|
$wrapper = getWrapper().appendTo($container);
|
|
$input = getTextArea().appendTo($wrapper);
|
|
$buttons = getButtons(false).appendTo($wrapper);
|
|
|
|
$buttons.find("button:first").on("click", this.cancel);
|
|
$input.bind("keydown", this.handleKeyDown);
|
|
|
|
scope.position(args.position);
|
|
$input.focus().select();
|
|
};
|
|
|
|
this.handleKeyDown = function (e) {
|
|
if (e.which == $.ui.keyCode.ENTER && e.ctrlKey) {
|
|
scope.cancel();
|
|
} else if (e.which == $.ui.keyCode.ESCAPE) {
|
|
e.preventDefault();
|
|
scope.cancel();
|
|
} else if (e.which == $.ui.keyCode.TAB && e.shiftKey) {
|
|
scope.cancel();
|
|
e.preventDefault();
|
|
args.grid.navigatePrev();
|
|
} else if (e.which == $.ui.keyCode.TAB) {
|
|
scope.cancel();
|
|
e.preventDefault();
|
|
args.grid.navigateNext();
|
|
}
|
|
};
|
|
|
|
this.cancel = function () {
|
|
$input.val(defaultValue);
|
|
args.cancelChanges();
|
|
};
|
|
|
|
this.hide = function () {
|
|
$wrapper.hide();
|
|
};
|
|
|
|
this.show = function () {
|
|
$wrapper.show();
|
|
};
|
|
|
|
this.position = function (position) {
|
|
calculateEditorPosition(position, $wrapper);
|
|
$wrapper
|
|
.css("top", position.top)
|
|
.css("left", position.left)
|
|
}
|
|
|
|
this.destroy = function () {
|
|
$wrapper.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$input.focus();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
$input.val(defaultValue = item[args.column.field]);
|
|
$input.select();
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
return $input.val();
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
item[args.column.field] = state;
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
return (!($input.val() == "" && defaultValue == null)) && ($input.val() != defaultValue);
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator($input.val());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
/* Override CheckboxEditor to implement checkbox with three states.
|
|
* 1) checked=true
|
|
* 2) unchecked=false
|
|
* 3) indeterminate=null
|
|
*/
|
|
function CheckboxEditor(args) {
|
|
var $select, el;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
$select = $("<input type=checkbox class='editor-checkbox' hideFocus>");
|
|
$select.appendTo(args.container);
|
|
$select.focus();
|
|
|
|
// The following code is taken from https://css-tricks.com/indeterminate-checkboxes/
|
|
$select.bind("click", function (e) {
|
|
el = $(this);
|
|
el.prop('indeterminate', false);
|
|
|
|
var checkbox_status = el.data('checked');
|
|
// add new row > checkbox clicked
|
|
if (el.data('checked') == undefined) {
|
|
checkbox_status = 1;
|
|
}
|
|
switch(checkbox_status) {
|
|
// unchecked, going indeterminate
|
|
case 0:
|
|
el.prop('indeterminate', true);
|
|
el.data('checked', 2); // determines next checkbox status
|
|
break;
|
|
|
|
// indeterminate, going checked
|
|
case 1:
|
|
el.prop('checked', true);
|
|
el.data('checked', 0);
|
|
break;
|
|
|
|
// checked, going unchecked
|
|
default:
|
|
el.prop('checked', false);
|
|
el.data('checked', 1);
|
|
}
|
|
});
|
|
};
|
|
|
|
this.destroy = function () {
|
|
$select.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$select.focus();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
defaultValue = item[args.column.field];
|
|
if (_.isNull(defaultValue)||_.isUndefined(defaultValue)) {
|
|
$select.prop('indeterminate', true);
|
|
$select.data('checked', 2);
|
|
}
|
|
else {
|
|
defaultValue = !!item[args.column.field];
|
|
if (defaultValue) {
|
|
$select.prop('checked', true);
|
|
$select.data('checked', 0);
|
|
} else {
|
|
$select.prop('checked', false);
|
|
$select.data('checked', 1);
|
|
}
|
|
}
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
if ($select.prop('indeterminate')) {
|
|
return null;
|
|
}
|
|
return $select.prop('checked');
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
item[args.column.field] = state;
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
// var select_value = this.serializeValue();
|
|
var select_value = $select.data('checked');
|
|
return (!(select_value === 2 && (defaultValue == null || defaultValue == undefined))) &&
|
|
(select_value !== defaultValue);
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator(this.serializeValue());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
// JSON data type editor
|
|
function ReadOnlyJsonTextEditor(args) {
|
|
var $input, $wrapper;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
var $container = $("body");
|
|
|
|
$wrapper = getWrapper().appendTo($container);
|
|
$input = getTextArea().appendTo($wrapper);
|
|
$buttons = getButtons(false).appendTo($wrapper);
|
|
|
|
$buttons.find("button:first").on("click", this.cancel);
|
|
$input.bind("keydown", this.handleKeyDown);
|
|
|
|
scope.position(args.position);
|
|
$input.focus().select();
|
|
};
|
|
|
|
this.handleKeyDown = function (e) {
|
|
if (e.which == $.ui.keyCode.ENTER && e.ctrlKey) {
|
|
scope.cancel();
|
|
} else if (e.which == $.ui.keyCode.ESCAPE) {
|
|
e.preventDefault();
|
|
scope.cancel();
|
|
} else if (e.which == $.ui.keyCode.TAB && e.shiftKey) {
|
|
scope.cancel();
|
|
e.preventDefault();
|
|
args.grid.navigatePrev();
|
|
} else if (e.which == $.ui.keyCode.TAB) {
|
|
scope.cancel();
|
|
e.preventDefault();
|
|
args.grid.navigateNext();
|
|
}
|
|
};
|
|
|
|
this.cancel = function () {
|
|
$input.val(defaultValue);
|
|
args.cancelChanges();
|
|
};
|
|
|
|
this.hide = function () {
|
|
$wrapper.hide();
|
|
};
|
|
|
|
this.show = function () {
|
|
$wrapper.show();
|
|
};
|
|
|
|
this.position = function (position) {
|
|
calculateEditorPosition(position, $wrapper);
|
|
$wrapper
|
|
.css("top", position.top)
|
|
.css("left", position.left)
|
|
}
|
|
|
|
this.destroy = function () {
|
|
$wrapper.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$input.focus();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
var data = defaultValue = item[args.column.field];
|
|
if (typeof data === "object" && !Array.isArray(data)) {
|
|
data = JSON.stringify(data);
|
|
} else if (Array.isArray(data)) {
|
|
var temp = [];
|
|
$.each(data, function(i, val) {
|
|
if (typeof val === "object") {
|
|
temp.push(JSON.stringify(val));
|
|
} else {
|
|
temp.push(val)
|
|
}
|
|
});
|
|
data = "[" + temp.join() + "]";
|
|
}
|
|
$input.val(data);
|
|
$input.select();
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
return $input.val();
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
item[args.column.field] = state;
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
return (!($input.val() == "" && defaultValue == null)) && ($input.val() != defaultValue);
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator($input.val());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
function ReadOnlyTextEditor(args) {
|
|
var $input;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
$input = $("<INPUT type=text class='editor-text' readonly/>")
|
|
.appendTo(args.container)
|
|
.bind("keydown.nav", function (e) {
|
|
if (e.keyCode === $.ui.keyCode.LEFT || e.keyCode === $.ui.keyCode.RIGHT) {
|
|
e.stopImmediatePropagation();
|
|
}
|
|
})
|
|
.focus()
|
|
.select();
|
|
};
|
|
|
|
this.destroy = function () {
|
|
$input.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$input.focus();
|
|
};
|
|
|
|
this.getValue = function () {
|
|
return $input.val();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
var value = item[args.column.field];
|
|
|
|
// Check if value is null or undefined
|
|
if (value === undefined && typeof value === "undefined") {
|
|
value = ""
|
|
}
|
|
defaultValue = value;
|
|
$input.val(defaultValue);
|
|
$input[0].defaultValue = defaultValue;
|
|
$input.select();
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
return $input.val();
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
item[args.column.field] = state;
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
return (!($input.val() == "" && defaultValue == null)) && ($input.val() != defaultValue);
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator($input.val());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
function ReadOnlyCheckboxEditor(args) {
|
|
var $select, el;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
$select = $("<INPUT type=checkbox value='true' class='editor-checkbox' hideFocus disabled>");
|
|
$select.appendTo(args.container);
|
|
$select.focus();
|
|
};
|
|
|
|
this.destroy = function () {
|
|
$select.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$select.focus();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
defaultValue = item[args.column.pos];
|
|
if (_.isNull(defaultValue)|| _.isUndefined(defaultValue)) {
|
|
$select.prop('indeterminate', true);
|
|
$select.data('checked', 2);
|
|
}
|
|
else {
|
|
defaultValue = !!item[args.column.pos];
|
|
if (defaultValue) {
|
|
$select.prop('checked', true);
|
|
$select.data('checked', 0);
|
|
} else {
|
|
$select.prop('checked', false);
|
|
$select.data('checked', 1);
|
|
}
|
|
}
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
if ($select.prop('indeterminate')) {
|
|
return null;
|
|
}
|
|
return $select.prop('checked');
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
item[args.column.pos] = state;
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
// var select_value = this.serializeValue();
|
|
var select_value = $select.data('checked');
|
|
return (!(select_value === 2 && (defaultValue == null || defaultValue == undefined))) &&
|
|
(select_value !== defaultValue);
|
|
};
|
|
|
|
this.validate = function () {
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
function CustomNumberEditor(args) {
|
|
var $input;
|
|
var defaultValue;
|
|
var scope = this;
|
|
|
|
this.init = function () {
|
|
$input = $("<INPUT type=text class='editor-text' />");
|
|
|
|
$input.bind("keydown.nav", function (e) {
|
|
if (e.keyCode === $.ui.keyCode.LEFT || e.keyCode === $.ui.keyCode.RIGHT) {
|
|
e.stopImmediatePropagation();
|
|
}
|
|
});
|
|
|
|
$input.appendTo(args.container);
|
|
$input.focus().select();
|
|
};
|
|
|
|
this.destroy = function () {
|
|
$input.remove();
|
|
};
|
|
|
|
this.focus = function () {
|
|
$input.focus();
|
|
};
|
|
|
|
this.loadValue = function (item) {
|
|
defaultValue = item[args.column.field];
|
|
$input.val(defaultValue);
|
|
$input[0].defaultValue = defaultValue;
|
|
$input.select();
|
|
};
|
|
|
|
this.serializeValue = function () {
|
|
if ($input.val() === "") {
|
|
return null;
|
|
}
|
|
return $input.val();
|
|
};
|
|
|
|
this.applyValue = function (item, state) {
|
|
setValue(args, item, state, 'number');
|
|
};
|
|
|
|
this.isValueChanged = function () {
|
|
if ($input.val() == "" && _.isUndefined(defaultValue)) {
|
|
return false;
|
|
} else if ($input.val() == "" && defaultValue == "") {
|
|
return true;
|
|
} else {
|
|
return (!($input.val() == "" && _.isNull(defaultValue ))) &&
|
|
($input.val() != defaultValue);
|
|
}
|
|
};
|
|
|
|
this.validate = function () {
|
|
if (isNaN($input.val())) {
|
|
return {
|
|
valid: false,
|
|
msg: "Please enter a valid integer"
|
|
};
|
|
}
|
|
|
|
if (args.column.validator) {
|
|
var validationResults = args.column.validator($input.val());
|
|
if (!validationResults.valid) {
|
|
return validationResults;
|
|
}
|
|
}
|
|
|
|
return {
|
|
valid: true,
|
|
msg: null
|
|
};
|
|
};
|
|
|
|
this.init();
|
|
}
|
|
|
|
})(jQuery);
|