0

Menus Larger

How can I make these menus larger so that the words are clear?

8 replies

null
    • Fred
    • 6 days ago
    • Reported - view

    Looks like you are using HTML code to make the pop-up window. If that is correct, please post the html code or a sample of the your database so people can see what you are doing.

      • New_Sun
      • 5 days ago
      • Reported - view

       Please check my code:

          let action := dialog("Send items to vendor", "Choose action:", ["Request", "Ordered", "Discount", "Add/Remove", "Complete", "Shipped", "Finished", "Cancel"]);
          if action = "Cancel" or action = "" then

      • New_Sun
      • 5 days ago
      • Reported - view

      result is in attach

    • Ninox partner
    • RoSoft_Steven.1
    • 5 days ago
    • Reported - view

     

    Try:

    let htm := "
    <html>
    <head>
    <style>
    .nx-alert-pane {
      display: flex;
      flex-direction: row;
      justify-content: center;
      padding: 1px;
      background-color: Azure;
    }
    .nx-alert-buttons {
      display: flex;
      flex-direction: column;
      background-color: LightBlue;
    }
    .nx-alert-buttons .nx-button-text {
      background-color: CornflowerBlue;
      color: Blue;
      text-align: center;
    }
    </style>
    </head>
    <body>
    Choose action:
    </body>
    </html>";
    let action := dialog(html("Send items to vendor"), html(htm), ["Request", "Ordered", "Discount", "Add/Remove", "Complete", "Shipped", "Finished", "Cancel"]);
    if action = "Cancel" or action = "" then
        alert("click")
    end
      • Fred
      • 5 days ago
      • Reported - view

       That is great. I was stumped when he showed it was a dialog() command. Love this community!

      • New_Sun
      • 4 days ago
      • Reported - view

      Thank you Fred, this is great🙏

      • Fred
      • 4 days ago
      • Reported - view

        it wasn’t me. It was

      • New_Sun
      • 4 days ago
      • Reported - view

       🙏

Content aside

  • 4 days agoLast active
  • 8Replies
  • 49Views
  • 3 Following