Skip to Content
DocsUI ApplicationsBuilt-in classes and functions

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 value
  • openWindow(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 component
  • close() - close window method
  • uiView(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