function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Chandra ShekharChandra Shekhar 

I want to make text in a field bold as soon as I click save button of record page. How can I achive this using apex class and trigger?

I am inserting new account record and I want certail words in field to be formatted as if they were written using html like heading, bold. rich text area doesnot provide much needed functionality. like when I enter account name as "Harry james potter "and click save. record detail page should show only "james" in bold, when address is being added to rich text area feild form trigger and class, result should be formatted. Can anybody help me with this ?
Best Answer chosen by Chandra Shekhar
Jasper WallJasper Wall
Hi Shekhar,
use an embedded or inline visual force page for this in the detail page of your record. place those fields on this vf page and apply css styles to achieve this.

Thanks,
Balayesu

All Answers

Jasper WallJasper Wall
Hi Shekhar,
use an embedded or inline visual force page for this in the detail page of your record. place those fields on this vf page and apply css styles to achieve this.

Thanks,
Balayesu
This was selected as the best answer
Chandra ShekharChandra Shekhar
Thanks