Select to view content in your preferred language

Editor Comment Box Size??

1201
10
07-23-2013 09:51 AM
KomanDiabate
New Contributor III
Hi All,
I am working on an editing application where I collecting various data using Flex api editor. I directly using the api to design the application and I am trying to change the size of the comment box, particularly reducing the height of the comment box by half.
Does anybody knows how this is done? Is this possible?
Thanks in advance.

[ATTACH=CONFIG]26152[/ATTACH]
Tags (2)
0 Kudos
10 Replies
KomanDiabate
New Contributor III
Hi Dasa,
Thank you so much for the link, I was able to successfully use it.

For those of you who maybe interested in doing this, here is how you formulate your field inspector:

import com.esri.ags.layers.supportClasses.Field;
<esri:FieldInspector id="fLyr" 
  featureLayer="{myFeatureLayer}"
  fieldName="COMMENT"
  label="Comment" >
  <esri:editor>
   <fx:Component>
    <fieldClasses:TextField height="50" /> 
   </fx:Component>
  </esri:editor> 
</esri:FieldInspector>
0 Kudos