Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

What's missing is how the cursor changes to a pointer when you go to click a button.  You can easily add this effect by setting up a custom CSS class.  Simply add this code to an HTML Fragment anywhere in your app or append to your CSS file.

Code Block
languagexml
<Style>
.cursor {
cursor:pointer;
}
</Style>

...