| Author |
html link not visible as table header in jsp
|
Ankur Sharma
Greenhorn
Joined: Nov 30, 2007
Posts: 21
|
|
Hi, I am not sure if this question belongs to JSP forum, since it's happening in JSP page I am posting it here. I am seeing this strange problem, in my JSP page all the link are looking fine except some links in Table header. Here is the code snippet: <th align="left" width="30%"><html:link action="/myAction.do?sortBy=org&all=${param.all}">Organization Name</html:link></th> ENV is struts, jstl, html. Now the problem is the text Organization Name is not visible, although it's there and I can click it. If I click and drag mouse over it I can see it. Also if I put this link anywhere else e.g. <TD> I can see it. I am not sure why it's happening. Please help me. Ankur
|
 |
Herman Schelti
Ranch Hand
Joined: Jul 17, 2006
Posts: 387
|
|
hi Ankur, can you post the html that gets generated? Herman
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56191
|
|
|
So the text is white on white? Sounds like a CSS issue.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Ankur Sharma
Greenhorn
Joined: Nov 30, 2007
Posts: 21
|
|
Hi Herman, Here is the generated HTML Code: <th align="left" width="30%"><a href="/oe/organizations.do?sortBy=org&all=">Organization Name</a></th> Thanks, Ankur
|
 |
Ankur Sharma
Greenhorn
Joined: Nov 30, 2007
Posts: 21
|
|
Thanks you friends for giving me insight. it was CSS issue. just changed the color and it worked.
|
 |
 |
|
|
subject: html link not visible as table header in jsp
|
|
|