| Author |
Disable hyperlink and Mouseover
|
Vinutha Jagadish
Greenhorn
Joined: Nov 20, 2009
Posts: 18
|
|
Hi,
I have a table with name and status as column fields to display names of person and status whether he is online or offline.
All rows has hyperlink.
I want to remove hyperlink and Mouseover icon for rows which has offline status
How to have this.
Thanks,
Jagadish
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
How is this all being generated? JSP? PHP?
This sounds like something that would be handled much better on the server than as an after-thought on the client.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Vinutha Jagadish
Greenhorn
Joined: Nov 20, 2009
Posts: 18
|
|
i have created jsp with display tag
in my com.inc.Wrapper class, i am handling to disable hyperlink like this,
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
|
I don't use that library, but the correct solution is not create the hyperlinks in the first place when they are not appropriate.
|
 |
Vinutha Jagadish
Greenhorn
Joined: Nov 20, 2009
Posts: 18
|
|
i need hyperlink for rows which has got status online. So, if i remove hyperlink logic, how to create links for online status rows.
i want to disable hyperlinks with the help of Wrapper class where i need to include logic to remove hyperlink
i tried with below code
but this logic only disables the text but still i am able to click that row.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16479
|
|
|
Generate hyperlinks for lines which need hyperlinks. Generate something else for lines which don't need hyperlinks. Plain text seems like a good substitute to me, but it's up to you to choose something which works.
|
 |
Vinutha Jagadish
Greenhorn
Joined: Nov 20, 2009
Posts: 18
|
|
This is the javaScript cal i am using in my jsp
This is the javascript function which our framework is using. This logic will generate hyperlinks for all rows in a table.
Now, how can i change this code to remove hyperlink for some of the rows.
Please explain with code if possible.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16479
|
|
Vinutha Jagadish wrote:This is the javascript function which our framework is using. This logic will generate hyperlinks for all rows in a table.
Now, how can i change this code to remove hyperlink for some of the rows.
Please explain with code if possible.
I still think that's the wrong thing to do. Just have the code generate hyperlinks only for the rows that should have them. Don't generate hyperlinks for all rows and then go back and un-generate them for the rows which should not have had them in the first place.
|
 |
 |
|
|
subject: Disable hyperlink and Mouseover
|
|
|