cmv/cmv-app

Indentify Tab Container - CSS issue

Closed this issue · 1 comments

image

Does anybody know how to solve this problem (picture above). I think there is a problem with CSS that cause the arrow button in vertical positions . Help will be much appreciated. Thanks in advance

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;
}