December 5, 200223 yr 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?
December 6, 200223 yr 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
June 5, 200322 yr Newbies 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
Create an account or sign in to comment