I want to add elements such as tables, radiobutton, dropdownlist to a page in bpmp process, but in the page designer I can not find them.

Should these be added with code?

What language is used?

Greetings.

Like 0

Like

4 comments

Edgar,

What does your page designer look like?

Show all comments (3)

Hi Community,

Any idea how can I open a section in client code?

Like 0

Like

2 comments

You'll use PushHistoryState to navigate to a section in client code. The following will go to the Contacts section: 

this.sandbox.publish...

MoreLess

Show all comments (1)

Hi Community,

Any Idea how can i do this, lets say in Current Case Edit Page, I want to know in client code if my previous screen before opening the Case edit Page is whether Case Section or Account Edit Page (referring to case section detail inside account edit page).

Thanks 

Like 0

Like

1 comments

See currentState from HistoryState

var state = sandbox.publish("GetHistoryState");

          ...MoreLess

Show all comments

Hi Community,

How can I open an Edit Page in client code?

Like 0

Like

4 comments

Something like this

this.openCardInChain({
    schemaName: "UsrMyPage",
    operation: ConfigurationEnums.CardStateV2.EDIT,
    id: theIdToEdit...

MoreLess

Show all comments (3)