Module Ext_util_Renderable


module Ext_util_Renderable: sig .. end
Given a component hierarchy of this: xtype: ' ...

Given a component hierarchy of this:

 {
     xtype: 'panel',
     id: 'ContainerA',
     layout: 'hbox',
     renderTo: Ext.getBody(),
     items: [
         {
             id: 'ContainerB',
             xtype: 'container',
             items: [
                 { id: 'ComponentA' }
             ]
         }
     ]
 }

The rendering of the above proceeds roughly like this:



class type t = object .. end
class type configs = object .. end
class type events = object .. end
class type statics = object .. end
val of_configs : configs Js.t -> t Js.t
of_configs c casts a config object c to an instance of class t
val to_configs : t Js.t -> configs Js.t
to_configs o casts instance o of class t to a config object