Adobe
9A0-182 · Question #12
Given the following Spark TextInput control: <s:TextInput id="field1" /> Which statement correctly declares a second TextInput control that's text property is bound to the text property of field1…
The correct answer is D. <s:TextInput text="@{field1.text}" />. See the full explanation below for the reasoning.
Question
Given the following Spark TextInput control:
<s:TextInput id="field1" /> Which statement correctly declares a second TextInput control that's text property is bound to the text property of field1 using two-way binding?
Options
- A<s:TextInput text="{{field1.text}}" />
- B<s:TextInput text="field1.text" />
- C<s:TextInput text="{@field1.text}" />
- D<s:TextInput text="@{field1.text}" />
How the community answered
(48 responses)- A6% (3)
- B4% (2)
- C8% (4)
- D81% (39)
Community Discussion
No community discussion yet for this question.