Modal
The silk:Modal component helps to create a manageable Bootstrap modal element.
Tag Use
Used as a container:
Properties
*Required property.
id
The modal's unique identifier. Default Value: Empty.
title
The text which will be used as the modal's title. if not included the modal is displayed without the top header bar. Default Value: Empty.
closeButton
Set the "X" icon in the top right corner of the modal's header bar. The modal is rendered without the "X" close icon. Default Value: false.
helpButton
Will disable the help icon used to display interface explanations. Default Value: false.
size
Defines the modal size. The values are: small, large, width, and full. The "width" value will create a model contained in the width of the page. The "full" modal will complete cover the screen width and height. Default Value: Empty.
centered
Centers the modal in the navigator screen. Default Value: true.
limitedClose
Define if the modal will not close when the user clicks outside the modal dialog. By default the modal only closes when click on the "X" icon or when a close modal button is added. Default Value: true.
bodyMargin
Removes the modal's body margin. This helps when a table is embedded in a modal. Default Value: true.
renderIf
A logic condition determining if the application should be executed. It accepted model variables. The explanation on how to use the logic statement is found in Server Code Logic documentation. Default Value: Empty.
Modal Implementation
The silk:Modal can be implemented in these ways.
Basic Modal with not footer.
If the silk:ModalFooter will not be used then the silk:MoboBody tag is not necessary, it will be added automatically.
Modal with footer
If the silk:ModalFooter will be used then it has to be added together with the silk:Body tag.
Modal with not header.
For this case the title property has not been added. The property limitClose is set to true to allow closing the modal when clicking outside the dialog.
Last updated