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="textlink"><wicket: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]