all files / grid/base/ enum.js

100% Statements 53/53
100% Branches 10/10
100% Functions 6/6
100% Lines 53/53
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61                
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var CellType;
    (function (CellType) {
        CellType[CellType["Data"] = 0] = "Data";
        CellType[CellType["Header"] = 1] = "Header";
        CellType[CellType["Summary"] = 2] = "Summary";
        CellType[CellType["GroupSummary"] = 3] = "GroupSummary";
        CellType[CellType["CaptionSummary"] = 4] = "CaptionSummary";
        CellType[CellType["Filter"] = 5] = "Filter";
        CellType[CellType["Indent"] = 6] = "Indent";
        CellType[CellType["GroupCaption"] = 7] = "GroupCaption";
        CellType[CellType["GroupCaptionEmpty"] = 8] = "GroupCaptionEmpty";
        CellType[CellType["Expand"] = 9] = "Expand";
        CellType[CellType["HeaderIndent"] = 10] = "HeaderIndent";
        CellType[CellType["StackedHeader"] = 11] = "StackedHeader";
        CellType[CellType["DetailHeader"] = 12] = "DetailHeader";
        CellType[CellType["DetailExpand"] = 13] = "DetailExpand";
        CellType[CellType["CommandColumn"] = 14] = "CommandColumn";
        CellType[CellType["DetailFooterIntent"] = 15] = "DetailFooterIntent";
        CellType[CellType["RowDragIcon"] = 16] = "RowDragIcon";
        CellType[CellType["RowDragHIcon"] = 17] = "RowDragHIcon";
    })(CellType = exports.CellType || (exports.CellType = {}));
    var RenderType;
    (function (RenderType) {
        RenderType[RenderType["Header"] = 0] = "Header";
        RenderType[RenderType["Content"] = 1] = "Content";
        RenderType[RenderType["Summary"] = 2] = "Summary";
    })(RenderType = exports.RenderType || (exports.RenderType = {}));
    var ToolbarItem;
    (function (ToolbarItem) {
        ToolbarItem[ToolbarItem["Add"] = 0] = "Add";
        ToolbarItem[ToolbarItem["Edit"] = 1] = "Edit";
        ToolbarItem[ToolbarItem["Update"] = 2] = "Update";
        ToolbarItem[ToolbarItem["Delete"] = 3] = "Delete";
        ToolbarItem[ToolbarItem["Cancel"] = 4] = "Cancel";
        ToolbarItem[ToolbarItem["Print"] = 5] = "Print";
        ToolbarItem[ToolbarItem["Search"] = 6] = "Search";
        ToolbarItem[ToolbarItem["ColumnChooser"] = 7] = "ColumnChooser";
        ToolbarItem[ToolbarItem["PdfExport"] = 8] = "PdfExport";
        ToolbarItem[ToolbarItem["ExcelExport"] = 9] = "ExcelExport";
        ToolbarItem[ToolbarItem["CsvExport"] = 10] = "CsvExport";
        ToolbarItem[ToolbarItem["WordExport"] = 11] = "WordExport";
    })(ToolbarItem = exports.ToolbarItem || (exports.ToolbarItem = {}));
    var ResponsiveDialogAction;
    (function (ResponsiveDialogAction) {
        ResponsiveDialogAction[ResponsiveDialogAction["isEdit"] = 0] = "isEdit";
        ResponsiveDialogAction[ResponsiveDialogAction["isAdd"] = 1] = "isAdd";
        ResponsiveDialogAction[ResponsiveDialogAction["isSort"] = 2] = "isSort";
        ResponsiveDialogAction[ResponsiveDialogAction["isFilter"] = 3] = "isFilter";
        ResponsiveDialogAction[ResponsiveDialogAction["isColMenu"] = 4] = "isColMenu";
        ResponsiveDialogAction[ResponsiveDialogAction["isColumnChooser"] = 5] = "isColumnChooser";
    })(ResponsiveDialogAction = exports.ResponsiveDialogAction || (exports.ResponsiveDialogAction = {}));
    var ResponsiveToolbarAction;
    (function (ResponsiveToolbarAction) {
        ResponsiveToolbarAction[ResponsiveToolbarAction["isInitial"] = 0] = "isInitial";
        ResponsiveToolbarAction[ResponsiveToolbarAction["isSearch"] = 1] = "isSearch";
    })(ResponsiveToolbarAction = exports.ResponsiveToolbarAction || (exports.ResponsiveToolbarAction = {}));
});