<?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 Re: How to remove the resizable button WidgetTemplate in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362681#M8537</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. Sorry if I brought the question in wrong forum&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jun 2012 16:48:22 GMT</pubDate>
    <dc:creator>FarhadNavaei</dc:creator>
    <dc:date>2012-06-04T16:48:22Z</dc:date>
    <item>
      <title>How to remove the resizable button WidgetTemplate</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362679#M8535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I need to remover the resizable button (right-bottom corner) of a viewer:WidgetTemplate, so that the user cannot resit it. I set resizable="false", but I got an error. What should I do?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 01:08:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362679#M8535</guid>
      <dc:creator>FarhadNavaei</dc:creator>
      <dc:date>2012-06-04T01:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the resizable button WidgetTemplate (set widget not resizeable)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362680#M8536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;NB! tested in FlexViewer 25&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in &amp;lt;BaseWidget&amp;gt; tag of MyGreatestWidget.mxml:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;viewer:BaseWidget xmlns:fx="http://ns.adobe.com/mxml/2009" [INDENT]xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:viewer="com.esri.viewer.*" isResizeable="false"&amp;gt;[/INDENT]&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;HR /&gt;[/HR]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in &amp;lt;script&amp;gt; tag of MyGreatestWidget.mxml:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;viewer:BaseWidget xmlns:fx="http://ns.adobe.com/mxml/2009" [INDENT]xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:viewer="com.esri.viewer.*" preinitialize="basewidget1_preinitializeHandler(event)"&amp;gt; &amp;lt;fx:Script&amp;gt; &amp;lt;![CDATA[ [INDENT]import mx.events.FlexEvent;&amp;nbsp; protected function basewidget1_preinitializeHandler(event:FlexEvent):void { [INDENT]this.isResizeable = false;[/INDENT] }[/INDENT] ]]&amp;gt; &amp;lt;/fx:Script&amp;gt;[/INDENT]&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;HR /&gt;[/HR]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in configuration file of MyGreatestWidget.mxml:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;configuration&amp;gt; [INDENT]&amp;lt;ismygreatestwidgetresizeable&amp;gt;mygreatestwidgetisnotresizeable&amp;lt;/ismygreatestwidgetresizeable&amp;gt;[/INDENT] &amp;lt;/configuration&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt; &amp;lt;viewer:BaseWidget xmlns:fx="http://ns.adobe.com/mxml/2009" [INDENT]xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:viewer="com.esri.viewer.*" widgetConfigLoaded="init()"&amp;gt; [INDENT]&amp;lt;fx:Script&amp;gt; &amp;lt;![CDATA[ [INDENT]import mx.events.FlexEvent; &amp;nbsp;&amp;nbsp;&amp;nbsp; private function init():void { [INDENT]if (configXML) { [INDENT]if (String(configXML.ismygreatestwidgetresizeable) == "mygreatestwidgetisnotresizeable") { [INDENT]this.isResizeable = false;[/INDENT] }[/INDENT] }[/INDENT] }[/INDENT] ]]&amp;gt; &amp;lt;/fx:Script&amp;gt;[/INDENT][/INDENT]&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;HR /&gt;[/HR]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and other 357 ways to do it :cool:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;HR /&gt;[/HR]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. There is such an ancient tradition, to ask questions about "Flex Viewer" on &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://forums.arcgis.com/forums/111-ArcGIS-Viewer-for-Flex" rel="nofollow" target="_blank"&gt;Flex Viewer Forum page&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 04:42:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362680#M8536</guid>
      <dc:creator>IvanBespalov</dc:creator>
      <dc:date>2012-06-04T04:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove the resizable button WidgetTemplate</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362681#M8537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks. Sorry if I brought the question in wrong forum&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 16:48:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-remove-the-resizable-button-widgettemplate/m-p/362681#M8537</guid>
      <dc:creator>FarhadNavaei</dc:creator>
      <dc:date>2012-06-04T16:48:22Z</dc:date>
    </item>
  </channel>
</rss>

