Bold & justify text field text
Hi, I have auto updating text field in my form second page. I’m updating first page field ”aa” & second page text filed auto updating..
I have used bellow code to manage that..
// Get field values
var one = getField('aa').value;
// Build para string
var para = "WHEREAS, pursuant to the transfer of the real property commonly known as " + one + ", by Assignee, Assignor wishes to assign and transfer all of its interest in the Lease Agreement(s) present or future to Assignee, and Assignee wishes to accept the foregoing Assignment from Assignor and assume all of the rights and obligations under the Lease Agreement(s) present and future;" ;
// Set this field's value equal to para
event.value = para;
what I want is,
- I want to justify the text in second page auto filling text field.
- I want to bold “"WHEREAS,” text.
I have already tried Ctrl +e option & it’s work. The issue is if I change first page “aa” value, second page auto filling text field, “Ctrl+e” all the settings automatically removing & just showing normal text. Can u pls help me to solve this issue. Thanks..
