Is there a special way to bind a JSON Datasource to the TileManager with Razor? We are trying the below and receiving an error.
IList<Person> list = new List<Person>(); list.Add( new Person(){Name="MDL"});
return HtmlHelperExtensions.Infragistics(helper) .TileManager() .ID("dashboard") .DataSourceType("JSON") .DataSource(JsonConvert.SerializeObject(list)) .Render(); Error: Cannot determine the data source type. Please specify if it is JSON or XML data.
Hi Tammy,
I tested your code and I would suggest you to modify it as follows:
Now it should be working correctly.
Let me know if you have any other questions.
Hello,
I'm just checking if you have any other questions regarding the matter.