Controlling UI pages within your application

Last published at: May 10th, 2021

FlowWright is built with "low code" in mind and thus certain parts of most can be reused within your application.  Here's how its done:

  • Workflow designer is an  Asp .net server control
  • UI pages and the designer can be skinned to make it look like your application
  • All UI pages can be used without the menu and top header

So, How does this happen?

Display Header:

If you want to switch off FlowWright page display header within your application, just pass the following in the URL:

  • displayHeader=no

The normal task page would like as follows:

After passing the parameter through the URL:

ConfigTasks.aspx?displayHeader=no the UI would look as follows:

This works with any of the FlowWright UI pages.  This makes most UI pages reusable within other applications.  If you do need to code, you can always write easily against the .Net API or the REST API.

Left Menu:

To switch off the FlowWright page left menu, pass the following in the URL:

  • leftMenu=no

The normal task page would like as follows:

After passing the parameter through the URL:

ConfigTasks.aspx?leftMenu=no the UI would look as follows:

Top Menu:

To switch off the FlowWright page top menu, pass the following in the URL:

  • topMenu=no

The normal task page would like as follows:

After passing the parameter through the URL:

ConfigTasks.aspx?topMenu=no the UI would look as follows:

No Header page and Menu(s):

If you want to switch off FlowWright page display header and menus within your application, just pass the following in the URL:

  • displayHeader=no&topMenu=no

The normal task page would like as follows:

After passing the parameter through the URL; the UI would look as follows:

ConfigTasks.aspx?displayHeader=no&topMenu=no