I have a grid that has first and last name columns. There are people whose last name is 'Null' (a STRING value, NOT the database/JSON value null). The last name cell is blank for these people. Is this a bug or a feature? Is there any way to configure the grid to display the actual value 'Null' instead of blank?
Here's part of the JSON:
{
"FirstName": "John",
"LastName": "Null",
"GradeValue": "2"
},
{
"FirstName": "Jane",
"LastName": "Null",
"GradeValue": "2"
},