No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. FIN4LSHAR3
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 1
    • Best 0
    • Groups 0

    FIN4LSHAR3

    @FIN4LSHAR3

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    FIN4LSHAR3 Follow

    Latest posts made by FIN4LSHAR3

    • Dialog in BEX Popup

      Hello,

      I’m trying to get a dialog window in my BEX to work (type popup).
      I implemented the following code which is initiated by a button:

          deleteDialog (key) {
            this.$q.dialog({
              title: 'Confirm',
              message: 'Are you sure?',
              persistent: true,
              cancel: true,
            }).onOk(() => {
              this.deleteProxy(key)
            })
          }
      

      However, whenever the dialog fires the popup window where the BEX is displayed disappears/gets resized to something like 10x10px. The only way I got the dialog to work is by setting the ‘seamless’ prop to true, which isn’t really a good workaround tbh. I tested this on Chrome and FF, both gave similar results. I presume this is related to the auto-resizing-to-content nature of the BEX popup, but I don’t know how to prevent this.

      Is there anything I can do to fix this?

      Thanks!

      posted in Help
      F
      FIN4LSHAR3