azModalDialogStyle
Type: String
Default: "rounded"
Values:"rounded" or "flat"
azModalDialogId
Type: String
Default: ""
azModalDialogTitle
Type: String
Default: ""
Values: Text
azModalDialogText
Type: String
Default: ""
Values: Text or HTML
azModalDialogiFrameURL
Type: String
Default: ""
azModalDialogWidth
Type: Integer
Default: 300
Unit: px
AZ Modal Dialog width will be adjusted to fit the screen size of the device if
azModalDialogWidth is set larger than the screen width.
azModalDialogHeight
Type: Integer
Default: 150
Unit: px
AZ Modal Dialog height will be adjusted to fit the screen size of the device if
azModalDialogHeight is set larger than the screen width.
azModalDialogContentHeight
Type: Boolean
Default: false
Values: true or false
By changing the value to true,
AZModalDialog will automatically adjust the height of the window to the content.
azModalDialogNoParentScroll
Type: Boolean
Default: false
Values: true or false
azModalDialogBackground
Type: Boolean
Default: true
Values: true or false
azModalDialogModal
Type: Boolean
Default: true
Values: true or false
By changing the value to
false,
AZModalDialog will automatically close when the user clicks on the outside of
AZModalDialog.
azModalDialogTitlebar
Type: Boolean
Default: true
Values: true or false
By changing the values to
false, you have the option to hide the entire title bar.
azModalDialogTitlebarClose
Type: Boolean
Default: true
Values: true or false
By changing the values to
false, you have the option to hide the close button (X) in the right part of the title bar.
azModalDialogResizable
Type: Boolean
Default: false
Values: true or false
azModalDialogDraggable
Type: Boolean
Default: true
Values: true or false
azModalDialogCloseOnEscape
Type: Boolean
Default: true
Values: true or false
azModalDialogPosition
Type: Boolean
Default: false
Values: true or false
azModalDialogPositionOf
Type: object
azModalDialogPositionMy
Type: String
Default: "left bottom-30"
azModalDialogPositionAt
Type: String
Default: "left top"
azModalDialogBackgroundColor
Type: Color Hex
Default: ""
See also CSS .az-modal-dialog
azModalDialogColor
Type: Color Hex
Default: ""
See also CSS .az-modal-dialog
azModalDialogTitlebarBackgroundColor
Type: Color Hex
Default: ""
See also CSS .az-modal-dialog-titlebar
azModalDialogTitlebarColor
Type: Color Hex
Default: ""
See also CSS .az-modal-dialog-titlebar
functionlib/azModalDialogBeforeOpen
Type: Function
$.subscribeonce("functionlib/azModalDialogBeforeOpen", function (e, data)
{
data.azModalDialogId
});
This function is triggered before AZModalDialog is fully initiated.
functionlib/azModalDialogAfterOpen
Type: Function
$.subscribeonce("functionlib/azModalDialogAfterOpen", function (e, data)
{
data.$Window - i.fn.init[]
data.$Titlebar - i.fn.init[]
data.$Dialog - i.fn.init[]
data.$Article - i.fn.init[]
data.$Iframe - i.fn.init[]
data.azModalDialogId
data.azModalDialogClose - ƒ ()
data.azChangeModalTitlebar - ƒ (n)
data.azModalDialogResize - ƒ (n)
});
This function is triggered after AZModalDialog is fully initiated.
functionlib/azModalDialogFocus
Type: Function
$.subscribe("functionlib/azModalDialogFocus", function (e, data)
{
data.$Window - i.fn.init[]
data.$Titlebar - i.fn.init[]
data.$Dialog - i.fn.init[]
data.$Article - i.fn.init[]
data.$Iframe - i.fn.init[]
data.azModalDialogId
});
functionlib/azModalDialogAfterClose
Type: Function
$.subscribeonce("functionlib/azModalDialogAfterClose", function (e, data)
{
data.azModalDialogId
});
This function is triggered after AZModalDialog is closed.