Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 8604 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

This is the CDML code for the totals (plus some)???

<P>Displaying records [FMP-rangestart] thru [FMP-rangeend] of

[FMP-currentfoundcount] records found. ([FMP-rangesize] records displayed).

As far as the columns, the standard for display for multiple records is in rows, it's easier to scroll down than over. But if you know that there will be a limited number of records, look here for a column solution:

http://www.fmforums.com/ubb/cgi-bin/ultimatebb.cgi?ubb=get_topic&f=22&t=000385

Posted

I'm sure this question is cake for a seasoned user so pls forgive me if I sound like a jackass...

NUTSHELL:

I am trying to display a results page that displays multiple records from a search in a columnar format WITH the total number of records displayed.

SCENARIO:

I am trying to display all the equipment and drops in a particular room. For example, if I click on the Room 114 link, I would like the results page to list in columns all the records with 114 in the ROOM field and display a count of all the records found on the results page.

REWARD:

A thank you and a rating.

I hope I articulated enough info to describe the desired solution, if not, pls ask me any specifics. TIA!!

Posted

I can live with the records being displayed in rows, the only thing that I am not sure of is--Do I keep repeating the tokens to display the multiple records. For example:

[FMP-record]

DROP:[FMP-Field: DROP] PORT:[FMP-Field: PORT] EQUIPMENT:[FMP-Field: EQUIPMENT] DESCRIPTION:[FMP-Field: DESCRIPTION][/FMP-record]<BR>

[FMP-record]

DROP:[FMP-Field: DROP] PORT:[FMP-Field: PORT] EQUIPMENT:[FMP-Field: EQUIPMENT] DESCRIPTION:[FMP-Field: DESCRIPTION][/FMP-record]<BR>

or is there another way to simply display all the records found in the set without having to do the above??

Posted

I don't know what you're using tokens for.

Nothing needs to be repeated in the CDML, FMP repeat the formatting between the [FMP-Record] tags for each record in the found set. Your code should look like:

<script language="javascript">

var columns = 1

</script>

<table border="2" cellspacing="5" cellpadding="5">

<tr>

[FMP-record]

<td>DROP:[FMP-Field: DROP] PORT:[FMP-Field: PORT] EQUIPMENT:[FMP-Field: EQUIPMENT] DESCRIPTION:[FMP-Field: DESCRIPTION]</td>

<script language="javascript">

if (columns<2)

{

columns++

}

else

{

document.write("</tr><tr>")

columns = 1

}

</script>

[/FMP-record]

</tr>

</table>

BTW, on my previous, I should also have given you the CDML to put on your page to get the next set of records:

[FMP-linkprevious]Previous page of

records.[/FMP-linkprevious][FMP-linknext]Next page of

records.[/FMP-linknext]

[ July 12, 2001: Message edited by: dspires ]

Posted

You can also try this format. Set the number of rows to display (I used 3) and it will display the data in column across the page. The first 3 records in the first column, next 3 in the 2nd column, etc. If you set the -max number of record on the form that feeds this result, the formatting should work nicely:

<P>Displaying records [FMP-rangestart] thru [FMP-rangeend] of

[FMP-currentfoundcount] records found. ([FMP-rangesize] records displayed).

<script language="javascript">

var rows = 1

</script>

<table width=100% border=0 cellspacing=5 cellpadding=0>

<tr>

<td valign=top>

<table border=1 cellspacing=0 cellpadding=2>

[FMP-record]

<tr>

<td valign=top>DROP:[FMP-Field: DROP]</td>

<td>PORT:[FMP-Field: PORT]</td>

<td>EQUIPMENT:[FMP-Field: EQUIPMENT]</td>

<td>DESCRIPTION:[FMP-Field: DESCRIPTION]</td>

</tr>

<script language="javascript">

if (rows<3)

{

var rows = rows+1

}

else

{

var rows = 1 document.write("</table></td><td valign=top><table border=1 cellspacing=0 cellpadding=2>")

}

</script>

[/FMP-record]

</table>

</td>

</tr>

</table>

<P>

[FMP-linkprevious]Previous page of

records.[/FMP-linkprevious]

<P>[FMP-linknext]Next page of

records.[/FMP-linknext]

[ July 12, 2001: Message edited by: dspires ]

This topic is 8604 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

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