Hi All,Sometimes we need to change the properties of siebel applet controls and below is the solution
Solution:
For the field for which we have to change the Font / Size / Color set the following HTML tags in the caption [string override] of the field properties.
1. "label style"
2. "span style"
3. "font face" & "color"
4. <b> & </b> to bold the text
5. font onmouseover & onmouseout
6. <br/> for line break in case of long captions
Examples:
<label style="background-color:red">fieldname</label>
<span style="background-color: red">fieldname</span>
<font face="fontname" size=26 color=yellow>fieldname</font>
<font onmouseover="style.color='green'" onmouseout="style.color='red'">fieldname or controlname</font>
field<br/>name<br/>is too long
No comments:
Post a Comment