close

defines whether tabs can be closed by clicking the dedicated "Cross" icon

boolean close;

Example

// all tabs can be closed
{view:"tabbar", close:true, options:[...]}
 
// only "Tab1" can be closed
{view:"tabbar", options:[
    {id:1, value:"Tab1", close:true},
    {id:1, value:"Tab2"}
]}


Default value:

false

Related samples

See also
  • Articles
  • Back to top