HTML tag in Web Client

Hi All,

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 ?.

Thanks in advance . Waiting for your feedback.

Hi All,

Is there any alternative to the HTMl tags in the Web client ? . I am using some bold and underline HTML tags at some places .

Thanks in advance . Waiting for your feedback.

Hi All ,

Please do help . I am waiting for your responses.

Hi, It is very hard to determ, what goes wrong…

Can you give us here, some snippets of code, and some screenshots, on how webclient it renders??

Hi Harjo ,

Thanks for your reply. I am using something like :

displayText = ‘’ +
utils.dateFormat(currentStartDate,‘EEE MM/dd’) +
‘’;

smLabel = frmObj.newLabel(displayText,
timeCellWidth + (colCnt * cellWidth), 0 , cellWidth, headerCellHeight, globals.mfcal_g_manageNavCalSelections);

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.

if i use this:

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);

then it works fine for me.