How to setFocus on Apache Royale Jewel Button?

71 Views Asked by At

All is in the title... I would like to trigger at application startup this definition in css :

.jewel.button:focus

But I don't see any setFocus or focus property on j:Button Could you tell me how to do ? Thanks

Regards

1

There are 1 best solutions below

0
On

UPDATE: This is no longer right. Recently SetFocus bead was removed and StyledUIBase got "setFocus" method. Use it instead of the code below.

Use the Basic bead SetFocusrecenlty added:

<j:Button text="Hello!" emphasis="secondary">
    <j:beads>
        <js:SetFocus enableFocus="true"/>
    </j:beads>
</j:Button>