Open a local file?

There is a web file uploader class to take files on the clients computer and upload them to the server for use.
However, what dialog can you use to open a file that is on the server for use?

[quote=197729:@Brian O’Brien]There is a web file uploader class to take files on the clients computer and upload them to the server for use.
However, what dialog can you use to open a file that is on the server for use?[/quote]

If you do not have too many items you can use a ContextualMenu. If you need to scroll, a WebListBox can do.
Use FolderItem.Count and Item to get the file names, as in the example at the bottom of http://documentation.xojo.com/index.php/Folderitem

What dialog box are you talking about?

You will have to create your own.

There is no dialog box available in Web. What I suggest is to list all folderitems within a folder/volume and list them in a menu where the user selects them.

Of course, it requires a bit more efforts than a desktop dialog box, especially if you want to navigate between folders.