iiYO Community

Full Version: How to use NVL mode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

Noob question, how to use NVL mode? didn't find documentation anywhere.

Thanks
Hi NeobeatIKK,

you can give your NVL textbox the attribute "behaviour" with a value of "nvl":

Code:
. textbox name nvltb, behaviour nvl

Or in older versions of the engine:

Code:
<textbox name="nvltb" behaviour="nvl" />

And if you want to clear the textbox, use the clear command:

Code:
. clear @nvltb

Or old version:

Code:
<clear asset="nvltb" />

To clarify: if you use both NVL and ADV mode, you must use separate textboxes.

Have fun!
Thanks!