Hi, In my application the textfield label name should appear bold. If i wrap the textfield tag with the td tag, its not working. For Example, here is my code: <tr> <td class="strongtext"> <s:password label="Password" name="password" size="15" maxlength="15" onkeypress="if(window.event.keyCode == '13') getElement('login').click();"/> </td> </tr>
I tried even with this modification as shown below: <tr> <td><b> <s:password label="Password" name="password" size="15" maxlength="15" onkeypress="if(window.event.keyCode == '13') getElement('login').click();"/> <b> </td> </tr> I tried even with the small modification of above code, shown below: <tr> <td ><strong> <s:password label="Password" name="password" size="15" maxlength="15" onkeypress="if(window.event.keyCode == '13') getElement('login').click();"/> </strong> </td> </tr> But no use... Note: Label name in the GUI should appear bold or strong. Pls help me out in this issue