Content service v6: value set but not visible in Umbraco
Hello all,
I'm trying to programmaticaly update the value of a "tags" property via the content service. The updated value is visible on the page and in the database, but it's not visible in Umbraco itself.
Is the debug attribute in the web.config file set to true? If not then try setting it to true - It should make sure Umbraco does not cache things too hard while in development mode.
Content service v6: value set but not visible in Umbraco
Hello all,
I'm trying to programmaticaly update the value of a "tags" property via the content service. The updated value is visible on the page and in the database, but it's not visible in Umbraco itself.
I'm using Umbraco 6.2.0 with this code:
And it's updated and visible on the page:
But I don't see the updated value in Umbraco, even after signing in again:
Am I doing something wrong? Do I need to force-update the cms somehow?
Thanks in advance for your help!
Erik
Hi Erik and welcome to our :)
Is the debug attribute in the web.config file set to true? If not then try setting it to true - It should make sure Umbraco does not cache things too hard while in development mode.
Hope this helps.
/Jan
Thanks Jan,
unfortunately that didn't help. But I did manage to get it updated in umbraco as well, by combining my code with some old school cms.businesslogic:
cms.businesslogic.Tags.Tag.AddTagsToNode(nodeId, tag, _group);
That did the trick!
Erik
is working on a reply...