Copied to clipboard

Flag this post as spam?

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


  • ariel.jugesh 9 posts 80 karma points
    Apr 20, 2017 @ 11:49
    ariel.jugesh
    0

    Reading Property editor value

    I have made property editor in umbraco 7+ with angularjs by following this example - https://our.umbraco.org/documentation/tutorials/Creating-a-Property-Editor/

    //ControllerCode
    angular.module("umbraco")
      .controller("My.MarkdownEditorController",
      function () {
       $scope.txtName = "Hector";
      });
    
      ------------------
    
      //HTMLCode
     <div ng-controller="My.MarkdownEditorController">
     <textarea ng-model="txtName"></textarea>
     </div>
    
      --------------------------
        //In Manifest , i am using following alias
        alias: "My.MarkdownEditor",
    

    Now my requirement is I want to fetch that textarea value in c# controller. How would i do it ?

  • Alex Skrypnyk 6182 posts 24284 karma points MVP 8x admin c-trib
    Apr 20, 2017 @ 11:56
    Alex Skrypnyk
    100

    Hi Ariel

    You can fetch data in c# with ContentService,

    var content = ApplicationContext.Current.Services.ContentService.GetById(yourNodeId);
    string value = content.GetValue<string>("yourPropertyAlieas");
    

    Read more:

    https://our.umbraco.org/documentation/Reference/Management/Models/Content#getvalue-string-propertytypealias

    On which stage you need it?

    You can use Umbraco events for interception a save event and working with data directly after pressing save button, look please how to use events:

    https://our.umbraco.org/documentation/reference/events/contentservice-events#usage

    Hope it will help you, ask if it's not clear, please.

    Thanks,

    Alex

  • ariel.jugesh 9 posts 80 karma points
    Apr 20, 2017 @ 12:37
    ariel.jugesh
    0

    Hi Alex,

    That worked. A big thank you.

  • Alex Skrypnyk 6182 posts 24284 karma points MVP 8x admin c-trib
    Apr 20, 2017 @ 12:38
    Alex Skrypnyk
    0

    You are welcome!!

    /Alex

  • 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