Created
February 21, 2019 16:19
-
-
Save maxkoretskyi/473f1a188479b7a24c2b727cdb8897e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CustomLoadingCellRenderer { | |
| init(params) { | |
| const text = 'One moment please...'; | |
| this.eGui = document.createElement('div'); | |
| this.eGui.innerHTML = | |
| '<div class="ag-custom-loading-cell">' + | |
| ' <i class="fas fa-spinner fa-pulse"></i> <span>' + text + ' </span>' + | |
| '</div>'; | |
| } | |
| getGui() { | |
| return this.eGui; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment