Werte durch Regeln löschen / DELETE values with rules

Hallo liebe Community,

zur Zeit ist es nicht möglich mit Regeln gesetzte Werte wieder durch Regeln zu löschen.

Wünschenswert wäre eine Möglichkeit wir folgt:

<ON_EVENT>
    <IF>
        <!-- Meine Bedingung bei der ich den Wert löschen will -->
    </IF>
    <WITH>
        <NULL />

    </WITH>
    <DO>
        <PROPERTY source="st_test" name="VALUE" />
    </DO>
</ON_EVENT>

Mit diesem Code soll der Wert von der Komponente st_test gelöscht werden.

Zur Zeit gibt es eine inoffizielle Lösung: siehe auch https://community.e-spirit.com/message/14414

Liebe Grüße

Benjamin

-----------------------------------

Hello dear community,

currently it is not possible to delete values with rules.

Beautiful would be something like this:


<ON_EVENT>
    <IF>
        <!-- Condition when to delete value -->
    </IF>
    <WITH>
        <NULL />

    </WITH>
    <DO>
        <PROPERTY source="st_test" name="VALUE" />
    </DO>
</ON_EVENT>

With this code the value of the variable st_text would be deleted.

Currently there is an unofficial solution: see also https://community.e-spirit.com/message/14414

Kind regards

Benjamin

Tags (4)
1 Comment
StefanSchulz
I'm new here

This is also possible by using the property EMPTY as target in the DO-section of the rule.