Skip to content

Titanium.UI.openWindowParams

Dictionary of options for the Titanium.UI.Window.open method.

Since: 2.0.0, 2.0.0, 2.0.0, 9.2.0 · Platforms: android, iphone, ipad, macos

Properties #

activityEnterAnimation#

Type: Number

Animation resource to run on the activity being opened.

This value will be ignored if animated is set to false.
See "Window Transitions in Android" in the main description of Titanium.UI.Window
for more information.

activityExitAnimation#

Type: Number

Animation resource to run on the activity that is being put in background as a window is being opened above it.

This value will be ignored if animated is set to false.
See "Window Transitions in Android" in the main description of Titanium.UI.Window
for more information.

animated#

Type: Boolean

Determines whether to use an animated effect when the window is shown.

On Android, this property supports animated transitions on windows
except for modal windows (modal:true). The transitions are on by default, but
you can disable this behavior by setting this value to false.

On iOS, only use this property to disable animated transitions on modal windows.
This property has unintended side effects on non-modal windows if it is defined.

bottom#

Type: Number, String

Window's bottom position, in platform-specific units.

On Android, this property has no effect.

forceModal#

Type: Boolean

Indicates whether the window enforces modal behaviour.

Set to true to prevent interactive dismissal of window while it is onscreen.

fullscreen#

Type: Boolean

Determines if the window is fullscreen.

height#

Type: Number, String

Window's height, in platform-specific units.

On Windows Phone and Windows 10 Mobile, this property does not take any effect.
On Windows 10 Store App, resizing Window takes no effect in following cases
according to Windows Runtime API document.

  • The requested size is larger than the available work area.
  • The requested size is less than the view's minimum size.
  • The smallest allowed minimum size is 192 x 48 effective pixels.
  • The largest allowed minimum size is 500 x 500 effective pixels.

left#

Type: Number, String

Window's left position, in platform-specific units.

On Android, this property has no effect.

Type: Boolean

Determines whether to open the window modal in front of other windows.

modalStyle#

Type: Number

Presentation style of this modal window.

modalTransitionStyle#

Type: Number

Transition style of this modal window.

Type: Boolean

For modal windows, hides the nav bar (true) or shows the nav bar (false).

On iOS, beginning with Release 3.1.3, this is no longer a valid parameter passed to the Window.open method.

Type: Number, String

Window's right position, in platform-specific units.

On Android, this property has no effect.

top#

Type: Number, String

Window's top position, in platform-specific units.

On Android, this property has no effect.

transition#

Type: Number

Transition style of this non-modal window.

width#

Type: Number, String

Window's width, in platform-specific units.

On Windows Phone and Windows 10 Mobile, this property does not take any effect.
On Windows 10 Store App, resizing Window takes no effect in following cases
according to Windows Runtime API document.

  • The requested size is larger than the available work area.
  • The requested size is less than the view's minimum size.
  • The smallest allowed minimum size is 192 x 48 effective pixels.
  • The largest allowed minimum size is 500 x 500 effective pixels.
  • This method is called while in while the app is running in Tablet Mode.

Titanium SDK Documentation