AgGrid Enterprise не проверяет - PullRequest
0 голосов
/ 25 июня 2018
import * as agGrid from "ag-grid-enterprise";
agGrid.LicenseManager.setLicenseKey("license_key");

У меня есть следующий код в моем файле index.js, но я продолжаю получать следующую ошибку:

main.js?c69b:114Uncaught TypeError: main_1.Grid.setEnterpriseComponents is not a function

я использую 18.0.1 для ag-grid и ag-grid-enterprise.Кто-нибудь знает, как решить эту проблему?

1 Ответ

0 голосов
/ 11 сентября 2018

Не уверен, если вы все еще ищете ответ на этот вопрос, но это то, что я должен был сделать, чтобы решить его:

import * as agGridEnterprise from 'ag-grid-enterprise';
agGridEnterprise.LicenseManager.setLicenseKey("your key");
...