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

Hi,

How does one get portal infomation from dso output via standard xsl

ie

<FMPDSORESULT>

<ROM>

<dave.stuarts>

<DATA>New Zealand</DATA>

<DATA>Canada</DATA>

</dave.stuarts>

</ROM>

<FMPDSORESULT>

I would assume you could navigate to it via

<xsl:value-of select="FMPDSORESULT/ROW/dave.stuart/DATA"> or a for loop or using an array type structure DATA[0] but I can't get it to work.

Thanks in advance

  • Author

Right fixed it. I just about had it but had stuffed some code up eariler on. The are some great xslt templates on the fileMaker web site

http://www.filemaker.com/technologies/xslt_library.html that helped me out

the xsl would look like this

<?xml version="1.0"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >

<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes" />

<xsl:template match="/">

<html>

<body>

<xsl:apply-templates select="FMPDSORESULT"></xsl:apply-templates>

</body>

</html>

</xsl:template>

<xsl:template match="FMPDSORESULT">

<table>

<tr>

<td>

<xsl:call-template name="daves"/>

</td>

</tr>

</table>

</xsl:template>

<xsl:template name="daves">

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

<tr bgcolor="#CCCCCC">

<th>Type</th>

</tr>

<tr>

<td align="right">

<xsl:for-each select="ROW/dave.stuarts/*">

<xsl:value-of select="." /><br />

</xsl:for-each>

</td>

</tr>

</table>

</xsl:template>

</xsl:stylesheet>

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.