LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  How to disable a node ONLY when parameter is left null ?

    Employee
    Posted 02-02-2015 10:40

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: gauravdb

    Hi,

    How do I disable a node if the parameter linked to it is left null ?

    I know about "equal-to" and "not-Equal-to" but how do I use NULL/NOTNULL ?

    Thanks
    GK


  • 2.  RE: How to disable a node ONLY when parameter is left null ?

    Employee
    Posted 02-02-2015 12:05

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Tim Meagher

    Hi,

    You can check to see if a parameter has been set using the {{?<ParameterName>?}} syntax - this will return true if the parameter has been set, and false otherwise.

    Therefore, to check if a parameter "MyParam" has been set to some value, you could use {{?MyParam?}}.

    If you wanted to disable the node if the parameter has not been set, you could set the Enabled parameter to:
    {{?MyParam?}}


    Hope this helps,
    Tim.