When updating the Name field for a node it does not seem to persist this into the umbracoNode table in the database.
I had the same problem, so I went through all the tables in the db. If you change the text field in the umbracoNode table's text field this updates the ultimate picker.
So failing a code fix for this from the umbraco guys, i guess you could:
Write a SQL trigger on the cmsDocument table to read the cmsDocument.text field and update the cmsNode.text field based on the nodeId
or alternatively extend ApplicationBase and add an event handler for AfterPublish
Ultimate Picker not reflecting content changes
Hello Umbraco Colleagues,
In version 6, I'm using a number of datatypes based on the ultimate picker for several docTypes.
But when additional nodes are added under the control's parent node -or- when the name of a node changes, the datatype does not reflect the change.
Am I missing something?
Isn't it supposed to populate the items from the from the children of the parent node?
No matter what I do - including restarting the website in IIS - the items remain the same.
Where is the control pulling the items from? Is there a way to cause it to reflect the published nodes in the parent?
Cheers,
David
Hi Dave,
When updating the Name field for a node it does not seem to persist this into the umbracoNode table in the database.
I had the same problem, so I went through all the tables in the db. If you change the text field in the umbracoNode table's text field this updates the ultimate picker.
So failing a code fix for this from the umbraco guys, i guess you could:
1st would be easier but nasty.
Cheers,
Chris.
is working on a reply...