The following lists the most important changes to make.
- All tags need to be closed.
For example (note the xml style closing backslash ^/>^):
RefDes = ^<img src='../common/images/iconStatusAlert.gif'
border='0' alt='^+incompatibleFormatAlt+^'
title='^+incompatibleFormatAlt+^'/> ^+RefDes;
- Use   instead of
- In URLs the & character will cause an error. Use &
For example:
columnVals.addElement(^<a
href=\^javascript:emxTableColumnLinkClick('../
engineeringcentral/
emxpartEditEBOMDialogFS.jsp?emxSuiteDirectory=engineeringcentra
l&relId=^+relId+^&suiteKey=EngineeringCentral&paren
tOID=^+parentId+^&objectId=^+id+^', '700', '600', 'false',
'popup', '')\^><img border=\^0\^ src=\^images/
iconActionEdit.gif\^ alt=\^\^/></a>^);
- All attributes need quotes.
src='../common/images/iconStatusAlert.gif' border='0'
Or
border=\^0\^ src=\^images/iconActionEdit.gif\^
- All images must have a height attribute of NOT more than 16.
<img height=\^16\^>
|