removes unneeded contentpicker dialog and just uses the standard tree picker that has the correct search built in, now search is working for the link picker.

This commit is contained in:
Shannon
2014-10-09 00:04:25 +11:00
parent 5c5a0e6140
commit 18efe25167
6 changed files with 13 additions and 156 deletions

View File

@@ -81,11 +81,12 @@ namespace Umbraco.Web.Trees
entity.HasChildren && (isContainer == false));
node.AdditionalData.Add("contentType", entity.ContentTypeAlias);
if (isContainer)
{
node.SetContainerStyle();
node.AdditionalData.Add("isContainer", true);
}
return node;
}