Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »


Use this when you need instructions on the screen without crowding the form

with instructions. This allows you to show more than you can with a place holder.


You can toggle the showing of the information by pressing the Info button and thenĀ 

by pressing it again to hide the instructions.


Create two variables in you FAB form.

InfoDropletInput

InfoDropleShow of type boolean and set default to false.

Add three UI elements to the screen.

  1. Input
  2. Button
  3. HTML


Add script to button


function onInfoButton(evt) {
if (getField("InfoDropletShow") === true) {
setField("InfoDropletShow",false);
} else {
setField("InfoDropletShow",true);
}
};



  • No labels