-
I have this (blue) button I like to move to the bottom. I have tried various things like e.g. Do I need to some manual Here is the problem and the code I have <Fields ColumnSize="ColumnSize.Is12" >
<Field ColumnSize="ColumnSize.Is10" >
<FieldLabel >Embeded Script</FieldLabel>
<MemoEdit Rows="5" />
</Field>
<Field ColumnSize="ColumnSize.Is2" >
<Tooltip Text="Copy" >
<Button Color="Color.Primary" >
<Icon Name="@("fa-copy")" Style="font-size:large" />
</Button>
</Tooltip>
</Field>
</Fields> I hope this one isn´t also hidden in plain sight! :-) |
Beta Was this translation helpful? Give feedback.
Answered by
stsrki
May 14, 2021
Replies: 1 comment 1 reply
-
In v0.9.4 this will be possible with Flex utilities: <Fields ColumnSize="ColumnSize.Is12">
<Field ColumnSize="ColumnSize.Is10">
<FieldLabel>Embeded Script</FieldLabel>
<MemoEdit Rows="5" />
</Field>
<Field ColumnSize="ColumnSize.Is2" Flex="Flex.AlignSelf.End">
<Tooltip Text="Copy">
<Button Color="Color.Primary">
<Icon Name="@("fa-copy")" Style="font-size:large" />
</Button>
</Tooltip>
</Field>
</Fields> but for now, as a workaround, you can do it like this: <Fields ColumnSize="ColumnSize.Is12">
<Field ColumnSize="ColumnSize.Is10">
<FieldLabel>Embeded Script</FieldLabel>
<MemoEdit Rows="5" />
</Field>
<Field ColumnSize="ColumnSize.Is2" Class="d-flex align-self-end">
<Tooltip Text="Copy">
<Button Color="Color.Primary">
<Icon Name="@("fa-copy")" Style="font-size:large" />
</Button>
</Tooltip>
</Field>
</Fields> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sturlath
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In v0.9.4 this will be possible with Flex utilities:
but for now, as a workaround, you can do it like this: