Which version of Umbraco and uComponents are you using?
This is the second time I've heard about this issue - see here - I haven't been able to reproduce the issue (yet). So any additional details would be great.
It reloads the node after first save, to get selected nodes from multi node tree picker.
The user have to life with, that the nodes loads twice.
// code by Tim Geyssens public class DocumentNew : ApplicationBase {
//Save pnode twice to load selected content of multi node tree picker. public DocumentNew() { Document.AfterSave += new Document.SaveEventHandler(Document_Save); }
I forgot to check if the page is valid. If you use mandatoory fields you need this version. Also you can filter out docs, which shouldnt be reloaded.
using umbraco.BusinessLogic; using umbraco.cms.businesslogic.web;
namespace Ontranet { // code by Tim Geyssens public class DocumentSave : ApplicationBase {
//Save pnode twice to load selected content of multi node tree picker. public DocumentSave() { Document.AfterSave += new Document.SaveEventHandler(Document_Save); }
Multi-node tree picker: Saving clears selected items
Hi,
I have a problem using Multi-node tree picker.
When selecting some nodes and saving the page, the selected items disappears until i re-enter the page again.
Can this be avoided?
Hi Peter,
Which version of Umbraco and uComponents are you using?
This is the second time I've heard about this issue - see here - I haven't been able to reproduce the issue (yet). So any additional details would be great.
Cheers, Lee.
Hi,.
I use vers. 3.03 on a umb vers. 4.7.1.1
Still a problem, i vanet got any more info, no js errors. it just dosnt retain the state of the selected nodes.
Hi all,
I ended up doing this, see code below.
It reloads the node after first save, to get selected nodes from multi node tree picker.
The user have to life with, that the nodes loads twice.
Hi,
I forgot to check if the page is valid. If you use mandatoory fields you need this version. Also you can filter out docs, which shouldnt be reloaded.
is working on a reply...