Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Having problems with frames...

I've created a simple web search form that queiries a FMP 4.1 db and returns the information to a record page. The two web files work well and interact with the db fine.

For ease-of-use, I would like to keep the search form on the left hand side of a frame and report the results in another frame. This would allow the user to have search and report functions without jumping back and forth between pages.

However, I have yet to find a way to have the results enter the right hand portion of the frame. When a search is executed, the results show up in the same frame as the search page.

I've searched through the Forum questions/answers and have not come up with anything that will work...

The coding for the frames is below..

<DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 transitional//EN"

"http: //www.w3.org./TR/xhtml1/DTD/transitional.dtd">

<html>

<head>

<title>Production Webstie: Project Schedule</title>

<link rel = "stylesheet" href = "schedule_stylesheet.css">

</head>

<frameset rows = "15%,*" >

<frame src = "head.html" name = "head" scrolling = "no" frameborder = "1">

<frameset cols = "20%,*">

<frame src = "search.html" name = "search" frameborder = "1">

<frame src = "main.html" name = "results" frameborder = "0">

</frameset>

</frameset>

</html>

Make sure that each frame on the frameset has been given a unique name (preferably short and without spaces, like "menu" and "results"); then make sure that the links on the menu page all specify the target frame correctly.

  • Author

figured it out...from the beginning I thought i would have to reference the frame in the CDML format tag somehow...CDML has nothing to do with it...after naming each frame with a unique identifier, (search for the search frame, head for the head frame and results for the frame where all search results would be shown) as normal in html, I added the <base target = "resutls"> tag between the <head>...</head> tags...worked like a charm...

...now all the results from the search show up in the rightside frame...

Thanks

pc

you could also do it like this if you wanted to.. you can actually target the frame from the form you are submiting

<form action="fmpro" target="results">

...

</form>

just thought you might like to know that as well.

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.