Versions Compared

Key

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

...

The only required array element is ‘view’, which provides a path to the Rich Display File to use for displaying a screen.  For example, if you created a simple screen in the Visual Designer, to output this screen, you only need the following line of code in your PHP script.

Code Block
php
php

<?
echo json_encode(array('view' => '/dspf/myscreen.json'));
?>

...