Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Angelo 111 posts 260 karma points
    Oct 24, 2018 @ 12:37
    Angelo
    0

    Saving prevalues after ContentType Saved

    Hello

    im triyng to save prevalues on my costum Propertytype after saving some contentType ...something like this :

                dataTypeService = ApplicationContext.Current.Services.DataTypeService;
                dataType = dataTypeService.GetDataTypeDefinitionById([MY_DATATYPE_DEFINITIONID]);
                var PreValues = dataTypeService.GetPreValuesCollectionByDataTypeId(dataType.Id).PreValuesAsDictionary;
                var prevalue = PreValues.Where(c => c.Key == "SampleData").FirstOrDefault();
                prevalue.Value.Value = "0";
                dataTypeService.Save(dataType);
    

    but i was afraid that this didnt work ... and it didnt :( because when i open settings on my Property the flag is still checked ...

    enter image description here

    any ideas of how to do that ?

    thank you

    Angelo

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies