Indentify Tab Container - CSS issue
Closed this issue · 1 comments
bapak71 commented
bapak71 commented
Hi.. after looking into this carefully .. its not a CSS issue. .. problem exist in TabContainer
I manage to remove the button by adding
useMenu : false, useSlider : false
see below :
tabContainer: function(identifyResults) {
var container = new TabContainer({
style: 'height: 100%; width: 100%;',
useMenu : false, useSlider : false
}, domConstruct.create('div'));
container.addChild(new ContentPane({
title: 'my title',
content: 'You clicked a feature. The results are in the next tab'
}));
container.addChild(new ContentPane({
title: 'Kiosk',
content: formatters.attributeList(identifyResults)
}));
return container.domNode;
}