Why need to double click on link to get it in action

Hi All,

As I am getting Base is null error.I decided to keep one set of implementation out of tow sets(i.e Sun RI and Myfaces).

So I removed jsf-api.jar,jsf-impl.jar files.

And kept only myfaces-api.jar,myfaces-impl.jar.But with this I am facing another problem.

I need to double click any link / button to get it activated.

I have link like,

<h:commandLink action="#{Bean.method}"/>

Why action is not firing on single mouse click ?

Thanks

Sandip

[513 byte] By [sandip_03_jsfa] at [2007-11-27 8:05:54]
# 1
That sounds like an issue with your browser, not JSF.
RaymondDeCampoa at 2007-7-12 19:48:24 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Hi ,

What happening is,

I have edit link when I click on link I m opening edit page.On that edit page I have Back button for which I have written code as,

<h:commandButton value="Back" onclick="history.back(); return false;" />

instead If I use

<h:commandButton value="Back" action="goBackPrevPage" />

Then I need not to double click on links.But if I use browsers Back button to come to previous page and then again click on edit link then its not getting activated , there I need to double click the link.

So is it conflict between the HTML and the JSF.

Thanks

Sandip

sandip_03_jsfa at 2007-7-12 19:48:24 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...