<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic PanelBox WidgetOutline in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346300#M9862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am customizing the widget container PanelBox. I know that the colors are set using the VerticalPanelBoxButtonSkin and HorizontalPanelBoxButtonSkin as well as the PanelBox.as. My issue is the border placed around the widgets. If you go into the WidgetTemplateSkin and take out all borders and open them in a float container they indeed have no borders. But if you place that widget into a panel container it gives each widget a border on the right and bottom sides (see attached image). What I am trying to do is get rid of these borders for a more blended look. I'm not sure what I am missing here but can't seem to find any reference to this border in the above mentioned files. Any help would be greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Apr 2013 14:33:43 GMT</pubDate>
    <dc:creator>IsaiahAguilera</dc:creator>
    <dc:date>2013-04-10T14:33:43Z</dc:date>
    <item>
      <title>PanelBox WidgetOutline</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346300#M9862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am customizing the widget container PanelBox. I know that the colors are set using the VerticalPanelBoxButtonSkin and HorizontalPanelBoxButtonSkin as well as the PanelBox.as. My issue is the border placed around the widgets. If you go into the WidgetTemplateSkin and take out all borders and open them in a float container they indeed have no borders. But if you place that widget into a panel container it gives each widget a border on the right and bottom sides (see attached image). What I am trying to do is get rid of these borders for a more blended look. I'm not sure what I am missing here but can't seem to find any reference to this border in the above mentioned files. Any help would be greatly appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 14:33:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346300#M9862</guid>
      <dc:creator>IsaiahAguilera</dc:creator>
      <dc:date>2013-04-10T14:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: PanelBox WidgetOutline</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346301#M9863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Isaiah,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; There are several things I would look at:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In the WidgetManager.mxml&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;positionPanelContainers function, &lt;PRE class="plain" name="code"&gt;vPanelBox.setStyle("dividerThickness", 10);&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;loadNextContainer function, &lt;PRE class="plain" name="code"&gt;leftContainer.gap = 2;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;SPAN&gt;Also in the src\com\esri\viewer\utils\PanelBox.as there is this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;_button.width = getStyle("dividerThickness") + 1;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;SPAN&gt; which leads me to believe that even if you set the dividerThickness to 0 it will always be 1.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 15:09:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346301#M9863</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2013-04-10T15:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: PanelBox WidgetOutline</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346302#M9864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was able to get rid of part of it by adjusting the gap:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;rightContainer.gap = -1;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;This got rid of the line between widgets.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Still trying to track down the border for the outer edges the code, must be hidden really well. The white line in the image is still on the right side and the bottom(can't see bottom in image).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 17:30:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346302#M9864</guid>
      <dc:creator>IsaiahAguilera</dc:creator>
      <dc:date>2013-04-10T17:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: PanelBox WidgetOutline</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346303#M9865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Isaiah,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Comment out the +1 I was talking about earlier (both instances).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;getStyle("dividerThickness");// + 1;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 17:56:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346303#M9865</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2013-04-10T17:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: PanelBox WidgetOutline</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346304#M9866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Robert,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had tried that after reading your first post, but I learned that control actually sets the thickness of the expand/retract button. I am starting to think its not related to the divider at all because if I switch the panel box to the right side, the white line stays on right side of the widget and not near the divider bar. I might just leave it on the right because the white line isn't as bad on the outer edge.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Apr 2013 18:10:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/panelbox-widgetoutline/m-p/346304#M9866</guid>
      <dc:creator>IsaiahAguilera</dc:creator>
      <dc:date>2013-04-10T18:10:50Z</dc:date>
    </item>
  </channel>
</rss>

