<?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: AttributeInspector from mx:Form to s:Form (Please ESRI) in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536330#M12098</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another question in another thread (with other name - so all members can read/help you).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As a start point do search in this forum, use keywords "datagrid". - &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/search.php"&gt;http://forums.arcgis.com/search.php&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;I think, what this question is not new.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2012 12:08:53 GMT</pubDate>
    <dc:creator>IvanBespalov</dc:creator>
    <dc:date>2012-03-16T12:08:53Z</dc:date>
    <item>
      <title>AttributeInspector from mx:Form to s:Form (Please ESRI)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536327#M12095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Please ESRI, change the mx:Form inside the AttributeInspector to a new s:Form, it's needed to skin the component and use a spark.skins.spark.StackedFormSkin.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It's hard now to style the attributeInspector and I didn't find a way to move the label to the top of the input.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's possibile in 2.6 release? (and ASAP?)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 10:16:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536327#M12095</guid>
      <dc:creator>LucaSimone</dc:creator>
      <dc:date>2012-03-16T10:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: AttributeInspector from mx:Form to s:Form (Please ESRI)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536328#M12096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Luca,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2.6 will never be released (wiping a tear) - the next is &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resourcesbeta.arcgis.com/en/webapis/flex-api/concepts/" rel="nofollow" target="_blank"&gt;version 3.0&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;:mad: and it is still mx:Form (Starting with Flex 4.5, Adobe recommends that you use the spark.components.Form class as an alternative to this class) - the last release Flex SDK is 4.6.0 - ESRI is two steps behind&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I didn't find a way to move the label to the top of the input&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;NB! That is not best coding sample. I just want to show you, what you no need to worry ESRI dev. team :cool: each time you think what "It's hard ..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;in AttributeInspector skin class add red colored code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;!--- Form to display the attributes of the active feature. --&amp;gt; &amp;lt;mx:Form id="form" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width="100%" height="100%" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enabled.disabled="false" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; horizontalScrollPolicy="off" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxHeight="{hostComponent.getStyle('formMaxHeight')}" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; verticalScrollPolicy="auto"&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; childAdd="form_childAddHandler(event)"&amp;gt; &amp;lt;/mx:Form&amp;gt;&amp;nbsp; // in script tag&amp;nbsp; protected function form_childAddHandler(event:ChildExistenceChangedEvent):void { &amp;nbsp;&amp;nbsp;&amp;nbsp; var displayObject:DisplayObject = event.relatedObject; &amp;nbsp;&amp;nbsp;&amp;nbsp; if (displayObject != null &amp;amp;&amp;amp; displayObject is mx.containers.FormItem) &amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var formItem:FormItem = displayObject as FormItem;&amp;nbsp; var labelValue:String = formItem.label;&amp;nbsp; formItem.label = ""; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var lbl:Label = new Label();&amp;nbsp; lbl.text = labelValue;&amp;nbsp; formItem.addChildAt(lbl, 0); &amp;nbsp;&amp;nbsp;&amp;nbsp; } }&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S. Also you can skin mx components and containers &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.adobe.com/en_US/flex/using/WS6DB252F3-BC93-4c6e-B95D-724CF2E928D7.html#WSF73B153C-F7B2-426d-AB9A-9AC892BA7E4C" rel="nofollow" target="_blank"&gt;http://help.adobe.com/en_US/flex/using/WS6DB252F3-BC93-4c6e-B95D-724CF2E928D7.html#WSF73B153C-F7B2-426d-AB9A-9AC892BA7E4C&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;P.S.2 You have an idea, &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ideas.arcgis.com/" rel="nofollow" target="_blank"&gt;http://ideas.arcgis.com/&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 11:36:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536328#M12096</guid>
      <dc:creator>IvanBespalov</dc:creator>
      <dc:date>2012-03-16T11:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: AttributeInspector from mx:Form to s:Form (Please ESRI)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536329#M12097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thx Ivan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;this is a great workaround.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know that is possible to skin a MX component, but it is a pain in the a** when, simply editing the form inside the AttributeInspector will resolve the problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another question, what about a DataGrid for editing the feature's attributes? With two columns, left attribute's name and right the Field (string, blob, int, ...)?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 11:56:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536329#M12097</guid>
      <dc:creator>LucaSimone</dc:creator>
      <dc:date>2012-03-16T11:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: AttributeInspector from mx:Form to s:Form (Please ESRI)</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536330#M12098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Another question in another thread (with other name - so all members can read/help you).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As a start point do search in this forum, use keywords "datagrid". - &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/search.php"&gt;http://forums.arcgis.com/search.php&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;I think, what this question is not new.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 12:08:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attributeinspector-from-mx-form-to-s-form-please/m-p/536330#M12098</guid>
      <dc:creator>IvanBespalov</dc:creator>
      <dc:date>2012-03-16T12:08:53Z</dc:date>
    </item>
  </channel>
</rss>

