Im receiving quirky issues with my json data from my asp.net MVC WebApi coming into my kendoUI controls because null strings are being sent across as
"FielName":null
Im wondering how do I go about setting up the jsonformatter on my webapi so that string fields with a null value return empty string "" instead of Null like? So looks like.
"FieldName":""
Thanks