Hi,
I see an inconsistent pattern of loading of TreeView on and off.
The Bricks view doesn't load the TreeView at times.
<div class="row">
<ejs-treeview id="testTree">
<e-treeview-fields id="nodeId" parentId="pid" text="nodeText" hasChildren="hasChild" expanded="expanded">
<e-data-manager url="/Bricks/GetAllData" adaptor="ODataV4Adaptor" crossDomain="true" offline="true"></e-data-manager>
</e-treeview-fields>
</ejs-treeview>
</div>
BricksController.cs
[HttpGet]
[HttpPost]
[ActionName("GetAllData")]
public IEnumerable<ParentNodeViewModel> GetAllData()
{
return ...;
}
What could be the issue?