var $layoutcolumnselector = function (grid) { this.title = GetTextByKey("P_GL_LAYOUT", 'Layout'); this.dialogId = 'dialog_layouts'; $("#" + this.dialogId).remove(); this.grid = grid; this.dialog = null; this.onOK = null; this.onDialogClosed = null; }; (function () { var __proto = $layoutcolumnselector.prototype; var tbdata; function initColumnsGrid(parent) { var divheader = $("
").appendTo(parent); var tbheader = $("
").appendTo(divheader); var trheader = $("").appendTo(tbheader); trheader.append(); var td = $(""); trheader.append(td); $("").appendTo(td).on('click', function (e) { tbdata.find(".chkselected:enabled").prop("checked", $(e.target).prop("checked")).trigger('change'); }); trheader.append($("").text(GetTextByKey("P_GRID_COLUMN", "Column"))); trheader.append($("").text(GetTextByKey("P_GRID_CAPTION", "Caption"))); trheader.append($("").text(GetTextByKey("P_GL_WIDTH", "Width"))); trheader.append($("").text('\uf2dc').attr('title', GetTextByKey("P_GRID_FREEZECOLUMNS", "Freeze Columns"))); trheader.append($("").text('\uf362').attr('title', GetTextByKey("P_GRID_WRAPTEXT", "Wrap Text"))); trheader.append($("").text('\uf7a4').attr('title', GetTextByKey("P_GRID_MAXLINES", "Maximum Rows Displayed for Wrapped Text"))); var divdata = $("
").appendTo(parent); tbdata = $("
").appendTo(divdata); } function createDialog() { var dialog = $('