Javascript – How to create Placeholder in AG-Grid Text field
I have an editable ag-grid. How can I add placeholders to empty cells (they should disappear when cells are edited)? cellEditor: 'agTextCellEditor', cellEditorParams: (params) => { debugger; const { filterOptionKey, placeholder } = params; return `Enter the Athelte`; }, filter:…