i have tested some components with ag-Grid community edition but it has limited supportability, such as to add set filters using SetFilterModule
, so the filter boxes would appear under the column header name, cannot be done with community version, therefore i have uninstalled the community version and installed the enterprise version using npm command
npm i ag-grid-enterprise
after installing package.json
shows dependencies and node_modules folder shows Enterprise modules.
But when i tried to import AgGridModule
from the import statement in the app.module.ts
it did not show AgGridModule
on the drop down. As shown on the image below, it had only three options LicenseManager, SetFilter, VirtualList
. so, It had given me the impression that it required a license. But according to agGrid website i can use the full enterprise version of the grid without a license and the only barriers it will add are water marks and the console error message.
https://www.ag-grid.com/license-pricing.php
But in order to at least see those console messages i have to install it properly. So i believe that i have not installed the agGrid properly yet.
Therefore can anyone provide me on the steps on how to install the agGrid enterprise version and run it without a license key ( with watermark and console error messages )?