Author Archive

Throwing Exceptions on a Database Interface

Posted by:

Prior to Studio Release 12, database interface exceptions were commonly handled by:

  1. Including a result code field for each database interface.
  2. Confirming the results for each return call of a database interface to decide the action to take (i.e. throw exception).
  3. Executing a special exception workflow with appropriate notifications.

For example, for one RiverStar client we created custom action to execute on every database interface that called an API to check the result code field. If it was set to “1”, the API would ...

Continue Reading →
0

Running Javascript within Tabs

Posted by:

When you place a tab container on a page with studio it is sometimes desirable to run javascript on the elements contained in the tab when the tab becomes activated.

There is a new event triggered on a tab panel when it activates.

To listen for the event you can do the following:

Where selector is an element in the tab panel.

Continue Reading →
0