PDA

View Full Version : Focus class issue for TextField



dudecool
1 Dec 2008, 7:23 AM
Hi All,
I am having some CSS issues, the focus class for TextField is getting messed up, attached is the screen shot as well as the sample project.

Please let me know if any one have a solution for this.
Regards,
Jayaveer.B

makana
25 Apr 2009, 11:22 AM
found that out:

add css:


input, textarea, td {
outline: none;
}


the td is to prevent the same hideous blue borders that appear if you rightclick a grid cell.

dudecool
27 Apr 2009, 11:17 PM
Hi,
Small addition to the code! we need to add the same setting for div tag, else when clicked on the fieldLabel one can see the border again.


input, textarea, td, div {
outline: none;
}Thanks for the reply :)

makana
27 Apr 2009, 11:33 PM
Yes, you're right. Got this issue, too. I forgot to edit the post, sorry. :">