Built-in classes and functions
UI class
Represents an UI application and has the following properties and methods:
_parameters- an object that contain values of the UI application instance parameters: object property name - parameter name; object property value - parameter valueopenWindow(specName, windowParameters, instanceName)getWindow(specName, instanceName)
UIWindow class
Represents an open UI window and has the following properties and methods:
_name- contains the UIWindow specification name_instanceName_ui- references the UI application object_config- references the UI window configuration object passed on the window initialization_$- reference to the JQuery object representing the layout of the window_kendo- reference to the data of the underlying Kendo componentclose()- close window methoduiView(conf)- creates a view on top of an HTML element in the window layout
UIView class
Represents a view in the layout of a window and has the following properties and methods:
_ui- reference to the UI application object_win- reference to the UI window object_config- references the UI window configuration object passed on the window initialization_$- reference to the JQuery object representing the content of the view_kendo- reference to the data of the underlying Kendo component
Last updated on