Jump to content

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

Recommended Posts

Posted

Hi. My search action of my Inline returnes duplicate values: Honda, Toyota, Honda. How can I show only the records of unique values (Honda, Toyota)? Thanks.

  • 4 weeks later...
Posted

Make sure you inline action is doing a sort by the unique values.

The result should be:

Honda

Honda

Toyota

Toyota

Toyota

Now you can do al little javascript trick:

<script language="javascript">

previousvalue = "";

</script>

[FMP-record]

<script language="javascript">

if (previousvalue != [FMP-field: yourfield])

{

}

previousvalue = "[FMP-field: yourfield]";

</script>

[/FMP-record]

This topic is 7617 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.