we have sharing same code and even using same ID.
http://prntscr.com/tugo5dso in this case if some module we want to hide it how can we do
u refer about "simple array manipulation methods like splice() on toolbar.items"
can u more specific how can i hide it
this is i used for show show/hide
/*hide/show columns*/
{
type: 'select',
cls: 'columnSelector',
attr: "multiple='multiple'", style: "height:60px;",
options: function (ui) {
//options in the select list correspond to all columns.
return this.getColModel().map(function(column){
var obj = {};
obj[ column.dataIndx ] = column.title;
return obj;
});
}
},
thanks