Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

spark form item gap in Flex

Is there a way to change the space between a spark form item and its content(textinput, conbobox)? I already set to 0 the "gap" property of the form, but still there is a lot of vertical space left between the form inputs.

like image 449
cili Avatar asked Feb 26 '11 12:02

cili


1 Answers

Set the gap to -14 to get no gap between the items

<s:Form>
    <s:layout>
        <s:FormLayout gap="-14"/>
    </s:layout>
    <s:FormItem .....>
</s:Form>
like image 109
Glen Blanchard Avatar answered Sep 21 '22 06:09

Glen Blanchard