Lines Matching refs:edittable
3 window.edittable = window.edittable || {};
5 (function (edittable) { argument
14 edittable.cellArray = function (selection) {
31 edittable.getEditTableContextMenu = function (getData, getMeta) {
35 name: LANG.plugins.edittable.toggle_header,
38 jQuery.each(edittable.cellArray(selection), function (index, cell) {
52 name: LANG.plugins.edittable.align_left,
55 jQuery.each(edittable.cellArray(selection), function (index, cell) {
71 name: LANG.plugins.edittable.align_center,
74 jQuery.each(edittable.cellArray(selection), function (index, cell) {
90 name: LANG.plugins.edittable.align_right,
93 jQuery.each(edittable.cellArray(selection), function (index, cell) {
110 name: LANG.plugins.edittable.row_above
113 name: LANG.plugins.edittable.remove_row,
123 if (window.confirm(LANG.plugins.edittable.confirmdeleterow)) {
142 name: LANG.plugins.edittable.row_below
146 name: LANG.plugins.edittable.col_left
149 name: LANG.plugins.edittable.remove_col,
159 if (window.confirm(LANG.plugins.edittable.confirmdeletecol)) {
178 name: LANG.plugins.edittable.col_right
186 … return '<div class="unmerge">' + LANG.plugins.edittable.unmerge_cells + '</div>';
188 … return '<div class="merge">' + LANG.plugins.edittable.merge_cells + '</div>';
210 }(window.edittable));