and cleared my cache, but I'm getting the following error
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS1502: The best overloaded method match for 'Umbraco.Web.Trees.TreeControllerBase.CreateTreeNode(string, string, System.Net.Http.Formatting.FormDataCollection, string, string)' has some invalid arguments
Source Error:
Line 32: foreach (var person in ctrl.GetAll())
Line 33: {
Line 34: var node = CreateTreeNode(person.Id.ToString(), queryStrings, person.Name, "icon-user", false);
Line 35:
Line 36: if (person.IsDrunk)
UK Fest Angular JS Demo problems.
Hi All
I've created a new umbraco 7.1 install and applied the angular JS demo to try to understand how custom sections work. However I can't get it to run.
I've seen there's a tweak to the manifest, which now reads
and cleared my cache, but I'm getting the following error
Any ideas?
Solved thanks to this thread
http://our.umbraco.org/forum/umbraco-7/using-umbraco-7/48422-Reloading-custom-tree-problems-(UKFest-Angular-JS-Demo)
the node should be defined thusly
var node = CreateTreeNode(person.Id.ToString(), id, queryStrings, person.Name, "icon-user", false);
is working on a reply...