Re: AjaxLink not clickable in IE

2008-05-22 Thread richardwilko

I have found ie to be rubbish it comes to javascript, any error in any file
can stop all the javascript on the page working.  make sure you dont have
other javascript on the page which causes problems.

Also open up the wicket ajax debug window and see you anything happens in
there when you click on the link.


richard



igor.vaynberg wrote:
 
 wow. we spoil our users too much when they complain about not getting
 a response after 3 hours...
 
 -igor
 
 On Wed, May 21, 2008 at 5:24 PM, Michael Mehrle [EMAIL PROTECTED]
 wrote:
 Anyone? Or are we only talking generics today? ;-)

 Seriously, could use a 2nd pair of eyes on this one... any input
 appreciated.

 -Original Message-
 From: Michael Mehrle [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, May 21, 2008 2:31 PM
 To: users@wicket.apache.org
 Subject: AjaxLink not clickable in IE

 I've got this AjaxLink:



 fooLink = new AjaxLink(fooLink) {

@Override

public void
 onClick(AjaxRequestTarget target) {

Boolean
 selected = (Boolean) fooCheckBox.getModelObject();

if
 (!selected) {


 fooCheckBox.setModelObject((new Boolean(true)));

}


 target.addComponent(fooCheckBox);

// pop up
 the modal


 showRecurringFooModal(recurringFooModalWindow, target);

}

};



   wicket:message
 key=fooLabel / 



 Works fine in Safari and Firefox but in IE it's not clickable - looks
 like a link but the mouse pointer doesn't change and nothing happens
 when clicking. No error message either in IE's JS console or in AJAX.
 Any idea what I'm doing wrong here?



 Michael


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/AjaxLink-not-clickable-in-IE-tp17379705p17399591.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AjaxLink not clickable in IE

2008-05-22 Thread James Carman
I had this exact problem, but it was because the text inside my a
tag was inside a label tag (at least I think that's what was causing
it).  For some reason, IE didn't like that.  I had to tell the label
to just spit out its contents.

On Wed, May 21, 2008 at 5:31 PM, Michael Mehrle [EMAIL PROTECTED] wrote:
 I've got this AjaxLink:



 fooLink = new AjaxLink(fooLink) {

@Override

public void
 onClick(AjaxRequestTarget target) {

Boolean
 selected = (Boolean) fooCheckBox.getModelObject();

if
 (!selected) {


 fooCheckBox.setModelObject((new Boolean(true)));

}


 target.addComponent(fooCheckBox);

// pop up
 the modal


 showRecurringFooModal(recurringFooModalWindow, target);

}

};



 a href= wicket:id= fooLink  class=textlinkwicket:message
 key=fooLabel //a



 Works fine in Safari and Firefox but in IE it's not clickable - looks
 like a link but the mouse pointer doesn't change and nothing happens
 when clicking. No error message either in IE's JS console or in AJAX.
 Any idea what I'm doing wrong here?



 Michael



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: AjaxLink not clickable in IE

2008-05-22 Thread Michael Mehrle
LOL - sorry - I saw tons of messages regarding generics and wanted to
make sure it didn't fall through the cracks. 

Yes, you spoil us! :-P

M.

-Original Message-
From: Igor Vaynberg [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 21, 2008 6:50 PM
To: users@wicket.apache.org
Subject: Re: AjaxLink not clickable in IE

wow. we spoil our users too much when they complain about not getting
a response after 3 hours...

-igor

On Wed, May 21, 2008 at 5:24 PM, Michael Mehrle [EMAIL PROTECTED]
wrote:
 Anyone? Or are we only talking generics today? ;-)

 Seriously, could use a 2nd pair of eyes on this one... any input
 appreciated.

 -Original Message-
 From: Michael Mehrle [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, May 21, 2008 2:31 PM
 To: users@wicket.apache.org
 Subject: AjaxLink not clickable in IE

 I've got this AjaxLink:



 fooLink = new AjaxLink(fooLink) {

@Override

public void
 onClick(AjaxRequestTarget target) {

Boolean
 selected = (Boolean) fooCheckBox.getModelObject();

if
 (!selected) {


 fooCheckBox.setModelObject((new Boolean(true)));

}


 target.addComponent(fooCheckBox);

// pop up
 the modal


 showRecurringFooModal(recurringFooModalWindow, target);

}

};



 a href= wicket:id= fooLink  class=textlinkwicket:message
 key=fooLabel //a



 Works fine in Safari and Firefox but in IE it's not clickable - looks
 like a link but the mouse pointer doesn't change and nothing happens
 when clicking. No error message either in IE's JS console or in AJAX.
 Any idea what I'm doing wrong here?



 Michael


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: AjaxLink not clickable in IE

2008-05-22 Thread Michael Mehrle
Nothing happens in the AJAX debug - checked that first thing. It just
behaves as if the link doesn't exist.

Michael

-Original Message-
From: richardwilko [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 22, 2008 1:54 AM
To: users@wicket.apache.org
Subject: Re: AjaxLink not clickable in IE


I have found ie to be rubbish it comes to javascript, any error in any
file
can stop all the javascript on the page working.  make sure you dont
have
other javascript on the page which causes problems.

Also open up the wicket ajax debug window and see you anything happens
in
there when you click on the link.


richard



igor.vaynberg wrote:
 
 wow. we spoil our users too much when they complain about not getting
 a response after 3 hours...
 
 -igor
 
 On Wed, May 21, 2008 at 5:24 PM, Michael Mehrle
[EMAIL PROTECTED]
 wrote:
 Anyone? Or are we only talking generics today? ;-)

 Seriously, could use a 2nd pair of eyes on this one... any input
 appreciated.

 -Original Message-
 From: Michael Mehrle [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, May 21, 2008 2:31 PM
 To: users@wicket.apache.org
 Subject: AjaxLink not clickable in IE

 I've got this AjaxLink:



 fooLink = new AjaxLink(fooLink) {

@Override

public void
 onClick(AjaxRequestTarget target) {

Boolean
 selected = (Boolean) fooCheckBox.getModelObject();

if
 (!selected) {


 fooCheckBox.setModelObject((new Boolean(true)));

}


 target.addComponent(fooCheckBox);

// pop up
 the modal


 showRecurringFooModal(recurringFooModalWindow, target);

}

};



   wicket:message
 key=fooLabel / 



 Works fine in Safari and Firefox but in IE it's not clickable - looks
 like a link but the mouse pointer doesn't change and nothing happens
 when clicking. No error message either in IE's JS console or in AJAX.
 Any idea what I'm doing wrong here?



 Michael


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context:
http://www.nabble.com/AjaxLink-not-clickable-in-IE-tp17379705p17399591.h
tml
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AjaxLink not clickable in IE

2008-05-22 Thread Igor Vaynberg
maybe there is a div overlaying your anchor

-igor

On Thu, May 22, 2008 at 3:28 PM, Michael Mehrle [EMAIL PROTECTED] wrote:
 Nothing happens in the AJAX debug - checked that first thing. It just
 behaves as if the link doesn't exist.

 Michael

 -Original Message-
 From: richardwilko [mailto:[EMAIL PROTECTED]
 Sent: Thursday, May 22, 2008 1:54 AM
 To: users@wicket.apache.org
 Subject: Re: AjaxLink not clickable in IE


 I have found ie to be rubbish it comes to javascript, any error in any
 file
 can stop all the javascript on the page working.  make sure you dont
 have
 other javascript on the page which causes problems.

 Also open up the wicket ajax debug window and see you anything happens
 in
 there when you click on the link.


 richard



 igor.vaynberg wrote:

 wow. we spoil our users too much when they complain about not getting
 a response after 3 hours...

 -igor

 On Wed, May 21, 2008 at 5:24 PM, Michael Mehrle
 [EMAIL PROTECTED]
 wrote:
 Anyone? Or are we only talking generics today? ;-)

 Seriously, could use a 2nd pair of eyes on this one... any input
 appreciated.

 -Original Message-
 From: Michael Mehrle [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, May 21, 2008 2:31 PM
 To: users@wicket.apache.org
 Subject: AjaxLink not clickable in IE

 I've got this AjaxLink:



 fooLink = new AjaxLink(fooLink) {

@Override

public void
 onClick(AjaxRequestTarget target) {

Boolean
 selected = (Boolean) fooCheckBox.getModelObject();

if
 (!selected) {


 fooCheckBox.setModelObject((new Boolean(true)));

}


 target.addComponent(fooCheckBox);

// pop up
 the modal


 showRecurringFooModal(recurringFooModalWindow, target);

}

};



   wicket:message
 key=fooLabel /



 Works fine in Safari and Firefox but in IE it's not clickable - looks
 like a link but the mouse pointer doesn't change and nothing happens
 when clicking. No error message either in IE's JS console or in AJAX.
 Any idea what I'm doing wrong here?



 Michael


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 --
 View this message in context:
 http://www.nabble.com/AjaxLink-not-clickable-in-IE-tp17379705p17399591.h
 tml
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



AjaxLink not clickable in IE

2008-05-21 Thread Michael Mehrle
I've got this AjaxLink:

 

fooLink = new AjaxLink(fooLink) {

@Override

public void
onClick(AjaxRequestTarget target) {

Boolean
selected = (Boolean) fooCheckBox.getModelObject();

if
(!selected) {

 
fooCheckBox.setModelObject((new Boolean(true)));

}

 
target.addComponent(fooCheckBox);

// pop up
the modal

 
showRecurringFooModal(recurringFooModalWindow, target);

}

};

 

a href= wicket:id= fooLink  class=textlinkwicket:message
key=fooLabel //a

 

Works fine in Safari and Firefox but in IE it's not clickable - looks
like a link but the mouse pointer doesn't change and nothing happens
when clicking. No error message either in IE's JS console or in AJAX.
Any idea what I'm doing wrong here?

 

Michael



RE: AjaxLink not clickable in IE

2008-05-21 Thread Michael Mehrle
FYI - this is the HTML being generated:

a href=# class=textlink onclick=var
wcall=wicketAjaxGet('../../../../../../?wicket:interface=:0:eventTabbedP
anel:panel:createEventForm:fooLink::IBehaviorListener:0:6',null,null,
function() {return Wicket.$('fooLink33') != null;}.bind(this));return
!wcall; id=fooLink33Click me now./a

Does not work in IE only. Any input would be appreciated.

Michael

-Original Message-
From: Michael Mehrle [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 21, 2008 2:31 PM
To: users@wicket.apache.org
Subject: AjaxLink not clickable in IE

I've got this AjaxLink:

 

fooLink = new AjaxLink(fooLink) {

@Override

public void
onClick(AjaxRequestTarget target) {

Boolean
selected = (Boolean) fooCheckBox.getModelObject();

if
(!selected) {

 
fooCheckBox.setModelObject((new Boolean(true)));

}

 
target.addComponent(fooCheckBox);

// pop up
the modal

 
showRecurringFooModal(recurringFooModalWindow, target);

}

};

 

a href= wicket:id= fooLink  class=textlinkwicket:message
key=fooLabel //a

 

Works fine in Safari and Firefox but in IE it's not clickable - looks
like a link but the mouse pointer doesn't change and nothing happens
when clicking. No error message either in IE's JS console or in AJAX.
Any idea what I'm doing wrong here?

 

Michael


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: AjaxLink not clickable in IE

2008-05-21 Thread Michael Mehrle
Anyone? Or are we only talking generics today? ;-)

Seriously, could use a 2nd pair of eyes on this one... any input
appreciated.

-Original Message-
From: Michael Mehrle [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 21, 2008 2:31 PM
To: users@wicket.apache.org
Subject: AjaxLink not clickable in IE

I've got this AjaxLink:

 

fooLink = new AjaxLink(fooLink) {

@Override

public void
onClick(AjaxRequestTarget target) {

Boolean
selected = (Boolean) fooCheckBox.getModelObject();

if
(!selected) {

 
fooCheckBox.setModelObject((new Boolean(true)));

}

 
target.addComponent(fooCheckBox);

// pop up
the modal

 
showRecurringFooModal(recurringFooModalWindow, target);

}

};

 

a href= wicket:id= fooLink  class=textlinkwicket:message
key=fooLabel //a

 

Works fine in Safari and Firefox but in IE it's not clickable - looks
like a link but the mouse pointer doesn't change and nothing happens
when clicking. No error message either in IE's JS console or in AJAX.
Any idea what I'm doing wrong here?

 

Michael


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AjaxLink not clickable in IE

2008-05-21 Thread Igor Vaynberg
wow. we spoil our users too much when they complain about not getting
a response after 3 hours...

-igor

On Wed, May 21, 2008 at 5:24 PM, Michael Mehrle [EMAIL PROTECTED] wrote:
 Anyone? Or are we only talking generics today? ;-)

 Seriously, could use a 2nd pair of eyes on this one... any input
 appreciated.

 -Original Message-
 From: Michael Mehrle [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, May 21, 2008 2:31 PM
 To: users@wicket.apache.org
 Subject: AjaxLink not clickable in IE

 I've got this AjaxLink:



 fooLink = new AjaxLink(fooLink) {

@Override

public void
 onClick(AjaxRequestTarget target) {

Boolean
 selected = (Boolean) fooCheckBox.getModelObject();

if
 (!selected) {


 fooCheckBox.setModelObject((new Boolean(true)));

}


 target.addComponent(fooCheckBox);

// pop up
 the modal


 showRecurringFooModal(recurringFooModalWindow, target);

}

};



 a href= wicket:id= fooLink  class=textlinkwicket:message
 key=fooLabel //a



 Works fine in Safari and Firefox but in IE it's not clickable - looks
 like a link but the mouse pointer doesn't change and nothing happens
 when clicking. No error message either in IE's JS console or in AJAX.
 Any idea what I'm doing wrong here?



 Michael


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]