May 9, 200223 yr I currently have a table, and in one of the cells is a CDML tag surrounded by [FM-Portal] and [/FM-Portal]. I would like to add another CDML tag to the same cell in the same table. This is easy enough if it is another portal tag. But the tag I want to add is NOT a portal tag. I have tried to configure it a number of ways by adding the [FM-record], but I cant seem to get the two to co-exist in the same cell. Either it is not possible or I am just placing the [FM-record] in the wrong place. Here is what I currently have: [FMP-Portal:files][FMP-record] <tr height="15"> <td align=LEFT valign=MIDDLE width="161" height="15"> <div align="left"> <span class="text">[FMP-Field: files::ftpfil]</span></a><span class="text">[FMP-field:ifftp]</span></div> </td> </tr> [/FMP-Portal][/FMP-record] </table> I have tried putting the [FMP-record][/FMP-record] in a number of places. Maybe this is not possible. But I just thought I would ask. LR
May 9, 200223 yr Hi, you need the '[FMP-record]" tags around the portal tag, because the portal info 'belongs' to that record, like this: [FMP-RECORD] <TABLE BORDER=0 CELLSPACING=0 WIDTH=325> <TR> <TD WIDTH=321> <P>[FMP-FIELD: fieldname]</P> </TD> </TR> <TR> <TD WIDTH=321> <P>[FMP-PORTAL: relationship] <TABLE BORDER=0 CELLSPACING=0 WIDTH=322> <TR> <TD> <P>[FMP-FIELD: relationship::fieldname1]<BR> [FMP-FIELD: relationship::fieldname2]</P> </TD> </TR> </TABLE> [/FMP-PORTAL]</P> </TD> </TR> </TABLE> [/FMP-RECORD] here I have a nested table to format the portal. regards, Jeff
Create an account or sign in to comment