trigger/alert
Show an alert in the app
Fields
type
• string
type
• stringOptions include default
, modal
, toast
default
, modal
, toast
style
• string
style
• stringOptions include default
, error
, success
, warning
default
, error
, success
, warning
title
• string
title
• stringThe title for your message
message
• string required
message
• string requiredThe text body for your message
Tapcart.action("trigger/alert", {
"type": "toast",
"style": "error",
"title": "User not found!",
"message": "It looks like there was a problem locating your account, try creating a user instead."
});
Updated 9 days ago