當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript GridOptionsWrapper.getLocaleTextFunc方法代碼示例

本文整理匯總了TypeScript中ag-grid/main.GridOptionsWrapper.getLocaleTextFunc方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript GridOptionsWrapper.getLocaleTextFunc方法的具體用法?TypeScript GridOptionsWrapper.getLocaleTextFunc怎麽用?TypeScript GridOptionsWrapper.getLocaleTextFunc使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ag-grid/main.GridOptionsWrapper的用法示例。


在下文中一共展示了GridOptionsWrapper.getLocaleTextFunc方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: passBeansUp

    @PostConstruct
    private passBeansUp(): void {
        super.setBeans({
            gridOptionsWrapper: this.gridOptionsWrapper,
            eventService: this.eventService,
            context: this.context,
            loggerFactory: this.loggerFactory,
            dragAndDropService: this.dragAndDropService
        });

        var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();
        var emptyMessage = localeTextFunc('pivotColumnsEmptyMessage', 'Drag here to pivot');
        var title = localeTextFunc('pivots', 'Pivots');

        super.init({
            dragAndDropIcon: DragAndDropService.ICON_GROUP,
            iconFactory: svgFactory.createPivotIcon,
            emptyMessage: emptyMessage,
            title: title
        });

        this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_EVERYTHING_CHANGED, this.refresh.bind(this));
        this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_PIVOT_CHANGED, this.refresh.bind(this));
        this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_PIVOT_MODE_CHANGED, this.checkVisibility.bind(this));

        this.refresh();
    }
開發者ID:jarrhead777,項目名稱:ag-grid-enterprise,代碼行數:27,代碼來源:pivotColumnsPanel.ts

示例2: createDefaultMenuItems

    private createDefaultMenuItems(): {[key: string]: MenuItem} {

        var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();

        var result: {[key: string]: MenuItem} = {
            copy: {
                name: localeTextFunc('copy','Copy'),
                shortcut: localeTextFunc('ctrlC','Ctrl+C'),
                icon: svgFactory.createCopyIcon(),
                action: ()=> this.clipboardService.copyToClipboard()
            },
            paste: {
                name: localeTextFunc('paste','Paste'),
                shortcut: localeTextFunc('ctrlV','Ctrl+V'),
                disabled: true,
                icon: svgFactory.createPasteIcon(),
                action: ()=> this.clipboardService.pasteFromClipboard()
            },
            toolPanel: {
                name: localeTextFunc('toolPanel', 'Tool Panel'),
                checked: this.gridApi.isToolPanelShowing(),
                action: ()=> this.gridApi.showToolPanel(!this.gridApi.isToolPanelShowing())
            }
        };

        return result;
    }
開發者ID:grupopzm,項目名稱:ag-grid-enterprise,代碼行數:27,代碼來源:contextMenu.ts

示例3: createTemplate

 private createTemplate() {
     var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();
     return template
         .replace('[SELECT ALL]', localeTextFunc('selectAll', 'Select All'))
         .replace('[SEARCH...]', localeTextFunc('searchOoo', 'Search...'))
         .replace('[APPLY FILTER]', localeTextFunc('applyFilter', 'Apply Filter'));
 }
開發者ID:janusund,項目名稱:UIScratchPad,代碼行數:7,代碼來源:setFilter.ts

示例4: insertRow

    private insertRow(value: any, rowIndex: any) {
        var _this = this;

        var eFilterValue = this.eFilterValueTemplate.cloneNode(true);

        var valueElement = eFilterValue.querySelector(".ag-filter-value");
        if (this.cellRenderer) {
            //renderer provided, so use it
            var resultFromRenderer = this.cellRenderer({
                value: value
            });

            if (_.isNode(resultFromRenderer)) {
                //a dom node or element was returned, so add child
                valueElement.appendChild(resultFromRenderer);
            } else {
                //otherwise assume it was html, so just insert
                valueElement.innerHTML = resultFromRenderer;
            }

        } else {
            //otherwise display as a string
            var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();
            var blanksText = '(' + localeTextFunc('blanks', 'Blanks') + ')';
            var displayNameOfValue = value === null ? blanksText : value;
            valueElement.innerHTML = displayNameOfValue;
        }
        var eCheckbox = eFilterValue.querySelector("input");
        eCheckbox.checked = this.model.isValueSelected(value);

        eCheckbox.onclick = function () {
            _this.onCheckboxClicked(eCheckbox, value);
        };

        eFilterValue.style.top = (this.rowHeight * rowIndex) + "px";

        this.eListContainer.appendChild(eFilterValue);
        this.rowsInBodyContainer[rowIndex] = eFilterValue;
    }
開發者ID:janusund,項目名稱:UIScratchPad,代碼行數:39,代碼來源:setFilter.ts

示例5: passBeansUp

    @PostConstruct
    private passBeansUp(): void {
        super.setBeans({
            eventService: this.eventService,
            context: this.context,
            loggerFactory: this.loggerFactory,
            dragAndDropService: this.dragAndDropService
        });

        var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();
        var emptyMessage = localeTextFunc('rowGroupColumnsEmptyMessage', 'Drag here to group');
        var title = localeTextFunc('groups', 'Groups');

        super.init({
            dragAndDropIcon: DragAndDropService.ICON_GROUP,
            iconFactory: svgFactory.createGroupIcon,
            emptyMessage: emptyMessage,
            title: title
        });

        this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_ROW_GROUP_CHANGED, this.refreshGui.bind(this));
    }
開發者ID:grupopzm,項目名稱:ag-grid-enterprise,代碼行數:22,代碼來源:rowGroupColumnsPanel.ts

示例6: passBeansUp

    @PostConstruct
    private passBeansUp(): void {
        super.setBeans({
            eventService: this.eventService,
            context: this.context,
            loggerFactory: this.loggerFactory,
            dragAndDropService: this.dragAndDropService
        });

        var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();
        var emptyMessage = localeTextFunc('pivotColumnsEmptyMessage', 'Drag here to aggregate');
        var title = localeTextFunc('values', 'Values');

        super.init({
            dragAndDropIcon: DragAndDropService.ICON_AGGREGATE,
            iconFactory: svgFactory.createAggregationIcon,
            emptyMessage: emptyMessage,
            title: title
        });

        this.addDestroyableEventListener(this.eventService, Events.EVENT_COLUMN_VALUE_CHANGED, this.refreshGui.bind(this));
    }
開發者ID:ycmag,項目名稱:ag-grid-enterprise,代碼行數:22,代碼來源:valueColumnsPanel.ts

示例7: createTemplate

 private createTemplate(): string {
     var localeTextFunc = this.gridOptionsWrapper.getLocaleTextFunc();
     return `<div class="ag-pivot-mode">
             <ag-checkbox class="ag-pivot-mode-select" label="${localeTextFunc('pivotMode', 'Pivot Mode')}"></ag-checkbox>
         </div>`;
 }
開發者ID:jarrhead777,項目名稱:ag-grid-enterprise,代碼行數:6,代碼來源:pivotModePanel.ts


注:本文中的ag-grid/main.GridOptionsWrapper.getLocaleTextFunc方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。