"Another Enhancement that I see that is needed is the panel dividers style is hard coded instead of using css or being included in the UIManager. I would like to see the divider use the UIManager and the standard viewer color scheme. UIManager additions:"
//Style mx|DividedBox
var cssStyleDeclarationMxDividedBox:CSSStyleDeclaration = topLevelStyleManager.getStyleDeclaration("mx.containers.DividedBox");
if (numberOfStyleColors > 4)
{
cssStyleDeclarationMxDividedBox.setStyle("_dividerFillColors", [backgroundColor,selectionColor]);
cssStyleDeclarationMxDividedBox.setStyle("_dividerBorderColor", backgroundColor);
}
This is suggestion 2 from https://github.com/Esri/arcgis-viewer-flex/issues/193
"Another Enhancement that I see that is needed is the panel dividers style is hard coded instead of using css or being included in the UIManager. I would like to see the divider use the UIManager and the standard viewer color scheme. UIManager additions:"