Skip to content

Container component

donvadicastro edited this page Oct 3, 2015 · 2 revisions

Containers are the repository for other simple controls or other containers. Using this components we can create form tree. This components can be described using next properties:

  • items - array of child
  • renderer - control to be used to draw this component. It is optional parameter. When renderer is not specified - component would be created in memory

Component declaration example

{
  items: [
    { binding: 'country.name' },
    { binding: 'country.code' }
  ]
}