Re: Wicket tags and IE6

2008-05-17 Thread Frank Bille
Then I don't really know. Perhaps file a bug report with Microsoft ;-)

Frank


On Sat, May 17, 2008 at 12:47 PM, John Krasnay <[EMAIL PROTECTED]> wrote:
> On Sat, May 17, 2008 at 09:57:13AM +0200, Frank Bille wrote:
>> What happens if you add the wicket namespace to the html tag?
>>
>> http://wicket.apache.org";>
>>
>> Frank
>>
>
> I thought about that, but the page already has the declaration.
>
> jk
>
>> On Fri, May 16, 2008 at 7:33 PM, John Krasnay <[EMAIL PROTECTED]> wrote:
>> > I've just noticed a specific problem with Wicket tags interfering with
>> > IE6. I have a page that uses the jqModal plugin for jQuery to display a
>> > popup div. It works fine on FF, but on IE6 the overlay (the
>> > semi-transparent div that blocks out the rest of the page while the
>> > popup is active) pushes the rest of the content down instead of floating
>> > above it, and the popup div itself is not visible.
>> >
>> > After quite a bit of debugging I narrowed it down to a Border I was
>> > using on the page, and I suspect it was the  tag that was
>> > giving IE fits.
>> >
>> > Of course, this is easily fixed by suppressing Wicket tags from the
>> > output, but I was wondering if (a) anyone else had seen this and can
>> > think of another workaround, and (b) if there's some way of fixing this
>> > in Wicket itself short of renaming .
>> >
>> > jk
>> >
>> > -
>> > 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]
>
>

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



Re: Wicket tags and IE6

2008-05-17 Thread John Krasnay
On Sat, May 17, 2008 at 09:57:13AM +0200, Frank Bille wrote:
> What happens if you add the wicket namespace to the html tag?
> 
> http://wicket.apache.org";>
> 
> Frank
> 

I thought about that, but the page already has the declaration.

jk

> On Fri, May 16, 2008 at 7:33 PM, John Krasnay <[EMAIL PROTECTED]> wrote:
> > I've just noticed a specific problem with Wicket tags interfering with
> > IE6. I have a page that uses the jqModal plugin for jQuery to display a
> > popup div. It works fine on FF, but on IE6 the overlay (the
> > semi-transparent div that blocks out the rest of the page while the
> > popup is active) pushes the rest of the content down instead of floating
> > above it, and the popup div itself is not visible.
> >
> > After quite a bit of debugging I narrowed it down to a Border I was
> > using on the page, and I suspect it was the  tag that was
> > giving IE fits.
> >
> > Of course, this is easily fixed by suppressing Wicket tags from the
> > output, but I was wondering if (a) anyone else had seen this and can
> > think of another workaround, and (b) if there's some way of fixing this
> > in Wicket itself short of renaming .
> >
> > jk
> >
> > -
> > 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: Wicket tags and IE6

2008-05-17 Thread Frank Bille
What happens if you add the wicket namespace to the html tag?

http://wicket.apache.org";>

Frank

On Fri, May 16, 2008 at 7:33 PM, John Krasnay <[EMAIL PROTECTED]> wrote:
> I've just noticed a specific problem with Wicket tags interfering with
> IE6. I have a page that uses the jqModal plugin for jQuery to display a
> popup div. It works fine on FF, but on IE6 the overlay (the
> semi-transparent div that blocks out the rest of the page while the
> popup is active) pushes the rest of the content down instead of floating
> above it, and the popup div itself is not visible.
>
> After quite a bit of debugging I narrowed it down to a Border I was
> using on the page, and I suspect it was the  tag that was
> giving IE fits.
>
> Of course, this is easily fixed by suppressing Wicket tags from the
> output, but I was wondering if (a) anyone else had seen this and can
> think of another workaround, and (b) if there's some way of fixing this
> in Wicket itself short of renaming .
>
> jk
>
> -
> 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: Wicket tags and IE6

2008-05-16 Thread John Krasnay
Yeah, that's the easy fix I mentioned, and it indeed fixes the problem.

jk

On Fri, May 16, 2008 at 01:43:07PM -0400, Ryan Gravener wrote:
> You can place
> getMarkupSettings().setStripWicketTags(true); into your Application.init().
> I believe these are automatically stripped when you are in deployment mode.
> 
> On Fri, May 16, 2008 at 1:33 PM, John Krasnay <[EMAIL PROTECTED]> wrote:
> 
> > I've just noticed a specific problem with Wicket tags interfering with
> > IE6. I have a page that uses the jqModal plugin for jQuery to display a
> > popup div. It works fine on FF, but on IE6 the overlay (the
> > semi-transparent div that blocks out the rest of the page while the
> > popup is active) pushes the rest of the content down instead of floating
> > above it, and the popup div itself is not visible.
> >
> > After quite a bit of debugging I narrowed it down to a Border I was
> > using on the page, and I suspect it was the  tag that was
> > giving IE fits.
> >
> > Of course, this is easily fixed by suppressing Wicket tags from the
> > output, but I was wondering if (a) anyone else had seen this and can
> > think of another workaround, and (b) if there's some way of fixing this
> > in Wicket itself short of renaming .
> >
> > jk
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> 
> 
> -- 
> Ryan Gravener
> http://twitter.com/ryangravener

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



Re: Wicket tags and IE6

2008-05-16 Thread Ryan Gravener
You can place
getMarkupSettings().setStripWicketTags(true); into your Application.init().
I believe these are automatically stripped when you are in deployment mode.

On Fri, May 16, 2008 at 1:33 PM, John Krasnay <[EMAIL PROTECTED]> wrote:

> I've just noticed a specific problem with Wicket tags interfering with
> IE6. I have a page that uses the jqModal plugin for jQuery to display a
> popup div. It works fine on FF, but on IE6 the overlay (the
> semi-transparent div that blocks out the rest of the page while the
> popup is active) pushes the rest of the content down instead of floating
> above it, and the popup div itself is not visible.
>
> After quite a bit of debugging I narrowed it down to a Border I was
> using on the page, and I suspect it was the  tag that was
> giving IE fits.
>
> Of course, this is easily fixed by suppressing Wicket tags from the
> output, but I was wondering if (a) anyone else had seen this and can
> think of another workaround, and (b) if there's some way of fixing this
> in Wicket itself short of renaming .
>
> jk
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
Ryan Gravener
http://twitter.com/ryangravener


Wicket tags and IE6

2008-05-16 Thread John Krasnay
I've just noticed a specific problem with Wicket tags interfering with
IE6. I have a page that uses the jqModal plugin for jQuery to display a
popup div. It works fine on FF, but on IE6 the overlay (the
semi-transparent div that blocks out the rest of the page while the
popup is active) pushes the rest of the content down instead of floating
above it, and the popup div itself is not visible.

After quite a bit of debugging I narrowed it down to a Border I was
using on the page, and I suspect it was the  tag that was
giving IE fits.

Of course, this is easily fixed by suppressing Wicket tags from the
output, but I was wondering if (a) anyone else had seen this and can
think of another workaround, and (b) if there's some way of fixing this
in Wicket itself short of renaming .

jk

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