Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

I'm puzzled by this question. I'm trying to create a response page that highlights or makes bold the find criteria everytime it occurs in the body. So a search on the word "horses" would return:

There are many [color:"red"]horses in that field over there.

Any ideas on how to accomplish this?

Posted

Here is some Javascrip you can use to do the job:

	<script>

oldtext = "[FMP-Field:mytextfield]";

[FMP-CurrentFind]

theword = "[FMP-FindValueItem]";

[/FMP-CurrentFind]

var pattern = new RegExp(theword,"g");

newtext = oldtext.replace(pattern,"<font color='red'>" + theword + "</font>");

document.write(newtext);

</script>


A number of ways exist to assign the variable "theword" with the search value.

All the best.

Garry

  • 5 months later...
  • Newbies
Posted

I am looking for the same sort of thing but to colour up a field depending on it contents, Is that possible

IE File Name "Status"

Search returns "Complete" in Red

Saerch returns "Not Complete" in Blue

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