azFullWindowStyle
Type: String
Default: "flat"
Values:"rounded-top" or "rounded-bottom" or "flat"
You can also add
shadow to all three values above.
azFullWindowId
Type: String
Default: ""
azFullWindowTitle
Type: String
Default: ""
Values: Text or HTML
azFullWindowText
Type: String
Default: ""
Values: Text or HTML
azFullWindowiFrameURL
Type: String
Default: ""
azFullWindowPosition
Type: String
Default: "bottom"
Values: bottom or top
azFullWindowFadeIn
Type: Integer
Default: 400
Unit: milliseconds
azFullWindowFadeOut
Type: Integer
Default: 400
Unit: milliseconds
azFullWindowHeight
Type: Integer
Default: 100%
Unit: pixel
azFullWindowTitlebar
Type: Boolean
Default: true
Values: true or false
By changing the values to
false, you have the option to hide the entire title bar.
azFullWindowTitlebarClose
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.
azFullWindowBackgroundColor
Type: Color Hex
Default: ""
See also CSS #az-full-window
azFullWindowColor
Type: Color Hex
Default: ""
See also CSS #az-full-window
functionlib/azFullWindowBeforeOpen
Type: Function
$.subscribeonce("functionlib/azFullWindowBeforeOpen", function (e, data)
{
data.azFullWindowId
});
This function is triggered before AZFullWindow is fully initiated.
functionlib/azFullWindowAfterOpen
Type: Function
$.subscribeonce("functionlib/azFullWindowAfterOpen", function (e, data)
{
data.$Window - i.fn.init[]
data.$Close - i.fn.init[]
data.azFullWindowId
data.azFullWindowClose - ƒ ()
});
This function is triggered when AZFullWindow is fully initiated.
functionlib/azFullWindowAfterClose
Type: Function
$.subscribeonce("functionlib/azFullWindowAfterClose", function (e, data)
{
data.azFullWindowId
});
This function is triggered after AZFullWindow is closed.