Button text overridden by action?

In FlowUI:

    <hbox id="buttonsPanel" classNames="buttons-panel">
        <button action="todoWhensTable.create" text="Create when" title="what about this?" id="btn1When"/>
        <button action="todoWhensTable.edit"/>
        <button action="todoWhensTable.remove"/>
    </hbox>

The btn1When button always has text “+ Create” instead of the desired otherwise. Setting the action seems to override the “text” or “title”? Should be the reverse…

Hi,

By design, action attributes take precedence over button’s attributes. You can override button’s attributes in ReadyEvent event handler.

Regards,
Gleb