Hi there!
I'm new to DataTables and been searching for this unsuccesful. Is there a option to set a default value when a cell is empty?
In my case I want it to show 'Info Unavailable', but only found a way by validating it in the render:
validationRender(data) {
return data ? data : 'Info Unavailable';
}
But since this is repeated across the whole project, there is a lot of duplicates.