Currently I have a form in a window like this:
<mx:Form>
<mx:FormItem label="Reference">
<mx:TextInput id="reference" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Command">
<mx:TextInput id="command" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Command Field">
<mx:TextInput id="commandField" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Parameter">
<mx:TextInput id="parameter" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Extra Command">
<mx:TextInput id="commandExtra" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Sequence Number">
<mx:TextInput id="seq" width="100%"/>
</mx:FormItem>
</mx:Form>
Is there any way to change the default value of a blank form entry from null
to some other value?