Uploaded image for project: 'ZK'
  1. ZK
  2. ZK-1450

'A' anchor tag in grid footer does't follow alignment set in grid column

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Invalid
    • Icon: Normal Normal
    • None
    • 6.0.2
    • None

      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?

            Unassigned Unassigned
            davout davout
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: