We have an Endpoints assembly method returning List of Objects, however when we try to create a K2 Listview based on it or execute method directly using SmartObjects tester tool then it does not return properties in clear format i.e., properties wise tabular format with columns.
Below is sample defination of the method, is there anything missing here?
public static List<ERPTasks> GetListOfObjects (string userEmail) { List<ERPTasks> listErpTasksObjects=new List<ERPTasks>(); ERPTasks _obj = new ERPTasks(); _obj.AssignmentDate = "1/1/2022"; _obj.TaskTitle = "Tasks 1"; listErpTasksObjects.Add(_obj); _obj = new ERPTasks(); _obj.AssignmentDate = "2/1/2022"; _obj.TaskTitle = "Tasks 2"; listErpTasksObjects.Add(_obj); return listErpTasksObjects; }