multiview

enables switching between multiview cells

boolean multiview;

Example

rows:[
    {view:"tabbar", id:'tabbar', multiview:true, options: [
              { value: 'List', id: 'listView'},
              { value: 'Form', id: 'formView'},
              { value: 'Empty', id: 'emptyView'}
              ]
    },
    {cells:[
        {id:"listView", ....},
        {id:"formView", ....},
        {id:"emptyView", ....},
        ]
    }
]

Related samples

Details

Segmented options and multiview cells must have the same IDs.

See also
Back to top