In my quest through the angular-ui-grid documentation, I have been unable to locate any mention of "CellFormatters" which were utilized in a previous project a few years back.
The purpose of the "CellFormatters" was to present a text representation of the data within a grid column. For example, if we had a column representing a boolean field like "isContentEditor" in an app primarily used by casual readers, we might decide that instead of displaying "false" or "No," the column should remain empty to reduce visual clutter.
In the past project, we would create a CellFormatter function that accepted the field value (either true or false) and returned a string representing the HTML-formatted version of the data.
Is it possible to achieve this type of pre-processing using JavaScript functions with angular-ui-grid?