Popup Customization
The Show Popup Form, Show Information Popup and Show Confirmation Popup blocks accept a Value Parameter called Customization that accepts an object value.
The object provided can have one or more of the following properties:
Property | Description |
---|---|
okBtnText | Specify the label of the popup's OK button. If not set the default value of OK. |
cancelBtnText | Specify the label of the popup's Cancel button. If not set the default value of Cancel. |
hdrBgColor | Specify the background color of the header section of the popup. Uses an internal default if not provided. |
hdrTxtColor | Specify the text color of the header section of the popup. Uses an internal default if not provided. |
bodyBgColor | Specify the background color of the body section of the popup. Uses an internal default if not provided. |
footerBgColor | Specify the background color of the footer section of the popup. Uses an internal default if not provided. |
hdrTxtClass | Add space separated list of CSS classes to customize the text in the header section of the poup. |
hdrH6 | If set to true, uses the |
modalClass | Customize the horizontal size, vertical centering and other options of the popup using Bootstrap's classes and/or your own. |
cancelBtnClass | Specify the CSS classes for styling the Cancel button. |
okBtnClass | Specify the CSS classes for styling the OK button |
oneBtn | If set to true, only shows the OK button and hides the Cancel button. |
noBtn | If set to true, hides both the OK and Cancel buttons. |
type | Can be one of the following: modal (a popup that is shown with semi-transparent backdrop), right-sidebar (a popup that appears from the right edge and is position on the right edge of the page), left-sidebar (a popup that appears from the left edge and is position on the left edge of the page), top-sidebar (a popup that appears from the top edge and is position on the center of the page). |
sidebarTop | The gap in pixels from the top of your page for right-sidebar, left-sidebar and top-sidebar type popups. |
noBackdropClickQuit | For right-sidebar, left-sidebar and top-sidebar type popups, if set to true, prevents the popup from being closed when the user clicks outside the popup. |
sideBarNoHeader | If set to true, shows right-sidebar, left-sidebar and top-sidebar type popups without a header section. |
sideBarNoFooter | If set to true, shows right-sidebar, left-sidebar and top-sidebar type popups without a footer section. |
Last updated