Popout?

Hello all,

For Xojo 2024 R4.2 or later, is there a popout available? If not is there a way to create one?

Same thing with a drawer. It was asked before but not sure if anything has been implemented recently.

Thanks,
Tim

In R4.2 I’m using them to create menu-like behavior. Here’s a snippet where I’m using the menu to pop a popup. For this specific app it’s the exact behavior I needed.

1 Like

Hi William

What object did you use for the popout (popup?)?

What I was looking for was something like a container that does the popout with the necessary fields/data that I want to show.

Tim

May this is what you want:
https://documentation.xojo.com/api/user_interface/web/webpopupmenu.html#webpopupmenu

For other things you can check the WebSDK to create your own controls or see if Graffiti from Anthony offers what you need.

1 Like

That’s the built-in Popover mechanism that allows you to show a container as a popover. In the Xojo new project window, hit Examples then search for “Popover”. The Web example is the third result.

2 Likes

Thanks guys!
Tim