UI elements alignment

I would like to have that button 'Save Model' to the right side, under the Model matrix.

I try below code, but not able to have it what I want. Can anyone help?

 fluidRow(
            column(3,plotOutput('Distribution_xxxDistance')),
            column(3,plotOutput('Distribution_yyyGrade')),
            br(),
            column(4,uiOutput('ModelCoeff_table')),
            #fluidRow(column(3,actionButton("button", "Save Model"))),
            column(2,h1('Model')),
            fluidRow(column(2,rHandsontableOutput("Model"))),
            fluidRow(column(2,actionButton("savemodel_button", "Save Model")))
          )

it is fine now, I have solved it.

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.