/* THESE FORMATTERS & EDITORS ARE JUST SAMPLES! */ (function($) { var SlickEditor = { SelectorCellFormatter : function(row, cell, value, columnDef, dataContext) { return (!dataContext ? "" : row); }, PercentCompleteCellFormatter : function(row, cell, value, columnDef, dataContext) { if (value == null || value === "") return "-"; else if (value < 50) return "" + value + "%"; else return "" + value + "%"; }, GraphicalPercentCompleteCellFormatter : function(row, cell, value, columnDef, dataContext) { if (value == null || value === "") return ""; var color; if (value < 30) color = "red"; else if (value < 70) color = "silver"; else color = "green"; return ""; }, YesNoCellFormatter : function(row, cell, value, columnDef, dataContext) { return value ? "Yes" : "No"; }, BoolCellFormatter : function(row, cell, value, columnDef, dataContext) { return value ? "" : ""; }, TaskNameFormatter : function(row, cell, value, columnDef, dataContext) { // todo: html encode var spacer = ""; return spacer + "  " + value; }, ResourcesFormatter : function(row, cell, value, columnDef, dataContext) { var resources = dataContext["resources"]; if (!resources || resources.length == 0) return ""; if (columnDef.width < 50) return (resources.length > 1 ? "
"; else return resources.join(", "); }, StarFormatter : function(row, cell, value, columnDef, dataContext) { return (value) ? "" : ""; }, TextCellEditor : function(args) { var $input; var defaultValue; var scope = this; this.init = function() { $input = $("") .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.setValue = function(val) { $input.val(val); }; this.loadValue = function(item) { defaultValue = item[args.column.field] || ""; $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(); }, IntegerCellEditor : function(args) { var $input; var defaultValue; var scope = this; this.init = function() { $input = $(""); $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() { return parseInt($input.val(),10) || 0; }; 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 (isNaN($input.val())) return { valid: false, msg: "Please enter a valid integer" }; return { valid: true, msg: null }; }; this.init(); }, DateCellEditor : function(args) { var $input; var defaultValue; var scope = this; var calendarOpen = false; this.init = function() { $input = $(""); $input.appendTo(args.container); $input.focus().select(); $input.datepicker({ showOn: "button", buttonImageOnly: true, buttonImage: "/img/grid/calendar.gif", beforeShow: function() { calendarOpen = true }, onClose: function() { calendarOpen = false } }); $input.width($input.width() - 18); }; this.destroy = function() { $.datepicker.dpDiv.stop(true,true); $input.datepicker("hide"); $input.datepicker("destroy"); $input.remove(); }; this.show = function() { if (calendarOpen) { $.datepicker.dpDiv.stop(true,true).show(); } }; this.hide = function() { if (calendarOpen) { $.datepicker.dpDiv.stop(true,true).hide(); } }; this.position = function(position) { if (!calendarOpen) return; $.datepicker.dpDiv .css("top", position.top + 30) .css("left", position.left); }; 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() { 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() { return { valid: true, msg: null }; }; this.init(); }, YesNoSelectCellEditor : function(args) { var $select; var defaultValue; var scope = this; this.init = function() { $select = $(""); $select.appendTo(args.container); $select.focus(); }; this.destroy = function() { $select.remove(); }; this.focus = function() { $select.focus(); }; this.loadValue = function(item) { $select.val((defaultValue = item[args.column.field]) ? "yes" : "no"); $select.select(); }; this.serializeValue = function() { return ($select.val() == "yes"); }; this.applyValue = function(item,state) { item[args.column.field] = state; }; this.isValueChanged = function() { return ($select.val() != defaultValue); }; this.validate = function() { return { valid: true, msg: null }; }; this.init(); }, YesNoCheckboxCellEditor : function(args) { var $select; var defaultValue; var scope = this; this.init = function() { $select = $(""); $select.appendTo(args.container); $select.focus(); }; this.destroy = function() { $select.remove(); }; this.focus = function() { $select.focus(); }; this.loadValue = function(item) { defaultValue = item[args.column.field]; if (defaultValue) $select.attr("checked", "checked"); else $select.removeAttr("checked"); }; this.serializeValue = function() { return $select.attr("checked"); }; this.applyValue = function(item,state) { item[args.column.field] = state; }; this.isValueChanged = function() { return ($select.attr("checked") != defaultValue); }; this.validate = function() { return { valid: true, msg: null }; }; this.init(); }, PercentCompleteCellEditor : function(args) { var $input, $picker; var defaultValue; var scope = this; this.init = function() { $input = $(""); $input.width($(args.container).innerWidth() - 25); $input.appendTo(args.container); $picker = $("
").appendTo(args.container); $picker.append("
"); $picker.find(".editor-percentcomplete-buttons").append("

"); $input.focus().select(); $picker.find(".editor-percentcomplete-slider").slider({ orientation: "vertical", range: "min", value: defaultValue, slide: function(event, ui) { $input.val(ui.value) } }); $picker.find(".editor-percentcomplete-buttons button").bind("click", function(e) { $input.val($(this).attr("val")); $picker.find(".editor-percentcomplete-slider").slider("value", $(this).attr("val")); }) }; this.destroy = function() { $input.remove(); $picker.remove(); }; this.focus = function() { $input.focus(); }; this.loadValue = function(item) { $input.val(defaultValue = item[args.column.field]); $input.select(); }; this.serializeValue = function() { return parseInt($input.val(),10) || 0; }; this.applyValue = function(item,state) { item[args.column.field] = state; }; this.isValueChanged = function() { return (!($input.val() == "" && defaultValue == null)) && ((parseInt($input.val(),10) || 0) != defaultValue); }; this.validate = function() { if (isNaN(parseInt($input.val(),10))) return { valid: false, msg: "Please enter a valid positive number" }; return { valid: true, msg: null }; }; this.init(); }, StarCellEditor : function(args) { var $input; var defaultValue; var scope = this; function toggle(e) { if (e.type == "keydown" && e.which != 32) return; if ($input.css("opacity") == "1") $input.css("opacity", 0.5); else $input.css("opacity", 1); e.preventDefault(); e.stopPropagation(); return false; } this.init = function() { $input = $("") .bind("click keydown", toggle) .appendTo(args.container) .focus(); }; this.destroy = function() { $input.unbind("click keydown", toggle); $input.remove(); }; this.focus = function() { $input.focus(); }; this.loadValue = function(item) { defaultValue = item[args.column.field]; $input.css("opacity", defaultValue ? 1 : 0.2); }; this.serializeValue = function() { return ($input.css("opacity") == "1"); }; this.applyValue = function(item,state) { item[args.column.field] = state; }; this.isValueChanged = function() { return defaultValue != ($input.css("opacity") == "1"); }; this.validate = function() { return { valid: true, msg: null }; }; this.init(); }, /* * An example of a "detached" editor. * The UI is added onto document BODY and .position(), .show() and .hide() are implemented. * KeyDown events are also handled to provide handling for Tab, Shift-Tab, Esc and Ctrl-Enter. */ LongTextCellEditor : function (args) { var $input, $wrapper; var defaultValue; var scope = this; this.init = function() { var $container = $("body"); $wrapper = $("
") .appendTo($container); $input = $("