Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrianMRO/cc1995610dbc9ecb31fc332f79fa1620 to your computer and use it in GitHub Desktop.
Save BrianMRO/cc1995610dbc9ecb31fc332f79fa1620 to your computer and use it in GitHub Desktop.
Acumatica Mobile 2021R1 Smart Panel Example
add screen IN202500 {
add container "StockItemSummary" {
...
add recordAction "CreateTagAction" {
displayName = "Create Tag"
redirect = true
redirectToDialog = "IN202500D1"
}
}
add dialog IN202500D1 {
type = FilterListScreen
openAs = Form
add dialogAction "OK" {
DisplayName = "Ok"
DialogResult = "Ok"
closeDialog = true
}
add dialogAction "Cancel" {
DisplayName = "Cancel"
DialogResult = "Cancel"
closeDialog = true
}
add container "AddTag" {
includeDialogActions = true
type = SelectionActionList
add field "Customer"
add field "Contact"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment