Display a list of actions on a single page for use within sites

Certified Lead Developer

I have an application with a set of actions that needs to be displayed in a single page of a site. What is the best approach to achieve this?

Example:

I have three actions:

1. Configure Departments

2. Configure Business Lines

3. Configure Products

 

Instead of having 3 pages in the site dedicated for each action, I need to display three links in a single page named "Configurations" that can trigger each action and on completion it goes back to the page with the 3 actions again.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

     Hi Sunilz,

    1) Create Wrapper interface------a!richTextDisplayField(

                     instructions: "Example",

                     labelPosition: "ABOVE",

                     value: {

                       a!richTextImage(

                         image: a!documentImage(

                           document: a!iconNewsEvent(

                             icon: "PERSON",

                             color: "BLUE"

                           )

                         )

                       ),

                       a!richTextItem(

                         text: cons!Test_ACTIONS[1] & char(

                           10

                         ),

                         style: "STRONG",

                         link: a!submitLink(

                           label: cons!Test_ACTIONS[1],

                           value: cons!Test_ACTIONS[1],

                           saveInto: ri!action

                         )

                       )

                     }

                   )

    2) Create a Wrapper Process Model , and configure this Wrapper interface as start form, configure respective actions in subprocess.

    3) Now configure this wrapper process model in site, so you find all the list on actions in one page on site.

Reply
  • 0
    Certified Senior Developer

     Hi Sunilz,

    1) Create Wrapper interface------a!richTextDisplayField(

                     instructions: "Example",

                     labelPosition: "ABOVE",

                     value: {

                       a!richTextImage(

                         image: a!documentImage(

                           document: a!iconNewsEvent(

                             icon: "PERSON",

                             color: "BLUE"

                           )

                         )

                       ),

                       a!richTextItem(

                         text: cons!Test_ACTIONS[1] & char(

                           10

                         ),

                         style: "STRONG",

                         link: a!submitLink(

                           label: cons!Test_ACTIONS[1],

                           value: cons!Test_ACTIONS[1],

                           saveInto: ri!action

                         )

                       )

                     }

                   )

    2) Create a Wrapper Process Model , and configure this Wrapper interface as start form, configure respective actions in subprocess.

    3) Now configure this wrapper process model in site, so you find all the list on actions in one page on site.

Children
No Data