
| Key: |
LPP-3930
|
| Type: |
Task
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
--
|
| Assignee: |
Unassigned
|
| Reporter: |
John Sundman
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
| Severity: |
Minor
|
| Fixed in Change#: |
5,236
|
| Fixed in branch: |
branches/legals
|
| Runtime: |
N/A
|
| Fix in hand: |
False
|
|
I think (I hope) this is covered, but need to go back and make sure. Explain what's going on in these four versions of "SpecialButton":
<canvas width="500" height="80">
<class name="SpecialButton" extends="button" onclick="changeLabel()">
<method name="changeLabel">
this.setAttribute('text', 'Clicked! ');
</method>
</class>
<simplelayout/>
<SpecialButton>
not clicked
</SpecialButton>
<SpecialButton text="not clicked"/>
<SpecialButton>
<text >not clicked</text>
</SpecialButton>
<SpecialButton>
<text text="not clicked"/>
</SpecialButton>
</canvas>
|
|
Description
|
I think (I hope) this is covered, but need to go back and make sure. Explain what's going on in these four versions of "SpecialButton":
<canvas width="500" height="80">
<class name="SpecialButton" extends="button" onclick="changeLabel()">
<method name="changeLabel">
this.setAttribute('text', 'Clicked! ');
</method>
</class>
<simplelayout/>
<SpecialButton>
not clicked
</SpecialButton>
<SpecialButton text="not clicked"/>
<SpecialButton>
<text >not clicked</text>
</SpecialButton>
<SpecialButton>
<text text="not clicked"/>
</SpecialButton>
</canvas> |
Show » |
|