Hi everyone
<script type="text/javascript">
    RED.nodes.registerType('InitSVI',{
        category: 'matrice_svi',
        color: '#EF4040',
        defaults: {
            name: {value:"",required:true},
            statName:{value:""},
            globalProperties:{value:""} //"", [] , {} // Object , JSON 
        },
        inputs: 0,
        outputs: 1,
        icon: "icons/InitSVI.svg",
        label: function() {
            return this.name||"InitSVI";
        },
        oneditprepare: function () {
            this.editor = RED.editor.createEditor({
                id: 'node-input-editor',
                mode: 'ace/mode/json',
                value: this.globalProperties
            });
        },
        oneditsave: function() {
            this.globalProperties = this.editor.getValue();
            this.editor.destroy();
            delete this.editor;
        },
        oneditcancel: function() {
            this.editor.destroy();
            delete this.editor;
        },
    });
</script>
<script type="text/html" data-template-name="InitSVI">
    <div class="form-row">
        <label for="node-input-name"><i class="fa fa-tag"></i>Name</label>
        <input type="text" id="node-input-name" placeholder="Name">
    </div>
    <div class="form-row">
        <label for="node-input-statName"><i class="fa fa-tag"></i>statName</label>
        <input type="text" id="node-input-statName" placeholder="statName">
    </div>
    <label for="node-input-editor"><i class="fa fa-tag"></i>globalProperties</label>
    <div style="height: 90%; min-height:150px;width: 90%;margin: auto;" class="node-text-editor" id="node-input-editor"></div>
</script>
hello everyone,
i created a custom node that has a text editor to put json inside, except that when i import this node it converts the value to string, except that i would like it to keep the type JSON, i tried to change the type of the field "value" but without success. If anyone has an idea, I'm a taker
Riri