Hello.
I've been trying to get the enum value as string into the grid, using .NET Core web application, and setting up the grid using tag helper, with a child grid defined in C#. I've found some examples of how to do it, but none of them appear to be working.
I've tried changing the default serializer to Newtonsoft.Json, decorate the class and enum values itself with appropriate attributes, but the grid still renders column as int value of the enum.
The template ${column} also produces the int value of the enum, but I'd like the string value instead.
If i changed the return type of controller from View(viewModel) to Json(viewModel), the returned json string is properly formatted and enums are rendered as string, but if i return a view, and setup the grid using tag helper, the rendered json string that's set as data source of the grid in the page source is rendering enums as int.