Skip to content

Instantly share code, notes, and snippets.

@maxkoretskyi
Created February 21, 2019 16:19
Show Gist options
  • Select an option

  • Save maxkoretskyi/473f1a188479b7a24c2b727cdb8897e2 to your computer and use it in GitHub Desktop.

Select an option

Save maxkoretskyi/473f1a188479b7a24c2b727cdb8897e2 to your computer and use it in GitHub Desktop.
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