defines whether tabs can be closed by clicking the dedicated "Cross" icon
// 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"}
]}