I've noticed that if I put an '<a> tag inside a grid footer linked to grid column that has a right align setting then the <a> label is not displayed right aligned.
For example:
<footer class="class_right">
<vlayout>
<a label="@load(vm.total.constraint)" onClick="@command('onClickTotalConstraint')" />
<space visible="@load(vm.showAvailableFTE)" />
</vlayout>
</footer>
This doesn't work. The anchor tag label is displayed left aligned.
My work around is to use a div, like:
<footer class="class_right">
<vlayout>
<div align="right">
<a label="@load(vm.total.constraint)" onClick="@command('onClickTotalConstraint')" />
</div>
<space visible="@load(vm.showAvailableFTE)" />
</vlayout>
</footer>
A bug?