My Web Page is not rendering properly . Only Some part of the web page is having some problem . I am using HTML tag to display that . Is Web Client not compatible with HTML tags in script ?. I am also having another problem. Are Some Font types are not compatible with the Web Client ?. Is “Verdana” not compatible with web Client ?.
In the smart client it is rendering perfectly . But in the Web Client the HTML tag is creating problem .The “displayText” appears distorted. When excluding the HTML tag it is working fine . Here I am using the Solution Model . “frmObj” is a Solution Model Form Object . “smLabel” is the solution model label object.
var form = solutionModel.getForm("window");
var displayText = '<html><body><u>' +
utils.dateFormat(new Date(),'EEE MM/dd') +
'</u></body></html>';
form.newLabel(displayText,10,30,60,20);