Skip to content

How do you move a Field's content to the bottom? #2363

Answered by stsrki
sturlath asked this question in Q&A
Discussion options

You must be logged in to vote

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=

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@sturlath
Comment options

Answer selected by sturlath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants