Re: [Wicket-user] A wicket Problem?

2006-08-19 Thread Martijn Dashorst
I haven't used it yet, but I am very fond of the Yahoo approach where
they reset all properties to none first, and from there on build up
the page: css reset

http://developer.yahoo.com/yui/

Martijn


On 8/17/06, wired [EMAIL PROTECTED] wrote:

 Thank you all for replying.

 I thought Gwyn's reply was closest to the money - maybe the dtd was to blame
 as there was a slight difference between the examples.

 So I removed the data type definition from the wicket page. Alas, no
 improvement.

 In the end I went to a good layout resource
 (http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html) and made
 a couple of changes to my CSS thus:

 body{
 text-align:center;
 }

 #wrap{
 color:#404040;
 width:970px;
 margin:10px auto;
 text-align:left
 padding:0;
 }


 Wicket wasn't to blame, after all it's strength lies in its strict
 separation of html content and java code.

 Todays score:

 Wicket 1 : Internet Explorer 0




 wired wrote:
 
  I use the following CSS code to center a page in a browser
 
  #wrap{
  color:#404040;
  width:970px;
  margin:10px auto;
  padding:0;
  }
 
  Using it a simple html page, the code works with Firefox 1.5.0.6, Internet
  Explorer 6.0.2 and Opera 9.01
 
  Now when I use the code in a wicket application the page renders correctly
  with Firefox and Opera but not Internet Explorer. IE cannot center the
  page.
 
  This is strange for it works in a simple test html page with IE.
 
  Is wicket to blame? Is it generating extra html markup that is causing IE
  to act strangely? (yet I cannot see anything odd upon examining the source
  code)
 
  Any help would be greatly appreciated!
 

 --
 View this message in context: 
 http://www.nabble.com/A-wicket-Problem--tf2118026.html#a5852024
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.1 now! Embed Wicket components in your portals!
-- http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] A wicket Problem?

2006-08-17 Thread Ayodeji Aladejebi
yeah i have had this same problem too. html works fine from DW but when it is wrapped into a wicket component, it sorts of renders improperly. most times it may be an improper use of div and span combination that litters each component generated and you can use setStripWicketTags(true) from init to make debugging easier
On 8/17/06, Pierre-Yves Saumont [EMAIL PROTECTED] wrote:
I had this problem several time. The way to find the cause was to savethe page as and then debug the result as a static html file (after somemodification where made to the links to make them work.)
If you can reproduce the problem using this static HTML file, you KNOWthe problem is not with Wicket.Pierre-Yveswired a écrit : I use the following CSS code to center a page in a browser
 wrap{ color:#404040; width:970px; margin:10px auto; padding:0; } Using it a simple html page, the code works with Firefox 1.5.0.6
, Internet Explorer 6.0.2 and Opera 9.01 Now when I use the code in a wicket application the page renders correctly with Firefox and Opera but not Internet Explorer. IE cannot center the page.
 This is strange for it works in a simple test html page with IE. Is wicket to blame? Is it generating extra html markup that is causing IE to act strangely? (yet I cannot see anything odd upon examining the source
 code) Any help would be greatly appreciated!-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user-- 
It takes insanity to drive in sanity - MeAladejebi Ayodeji A., DabarObjects SolutionsEmail: [EMAIL PROTECTED]Mobile: +234 803 589 1780Web: 
www.dabarobjects.comCommunity:www.cowblock.net
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] A wicket Problem?

2006-08-17 Thread wired

Thank you all for replying.

I thought Gwyn's reply was closest to the money - maybe the dtd was to blame
as there was a slight difference between the examples.

So I removed the data type definition from the wicket page. Alas, no
improvement.

In the end I went to a good layout resource
(http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html) and made
a couple of changes to my CSS thus:

body{
text-align:center;
}

#wrap{
color:#404040;
width:970px;
margin:10px auto;
text-align:left
padding:0;
}


Wicket wasn't to blame, after all it's strength lies in its strict
separation of html content and java code.

Todays score:

Wicket 1 : Internet Explorer 0


 

wired wrote:
 
 I use the following CSS code to center a page in a browser
 
 #wrap{
 color:#404040;
 width:970px;
 margin:10px auto;
 padding:0;
 }
 
 Using it a simple html page, the code works with Firefox 1.5.0.6, Internet
 Explorer 6.0.2 and Opera 9.01
 
 Now when I use the code in a wicket application the page renders correctly
 with Firefox and Opera but not Internet Explorer. IE cannot center the
 page.
 
 This is strange for it works in a simple test html page with IE.
 
 Is wicket to blame? Is it generating extra html markup that is causing IE
 to act strangely? (yet I cannot see anything odd upon examining the source
 code)
 
 Any help would be greatly appreciated! 
 

-- 
View this message in context: 
http://www.nabble.com/A-wicket-Problem--tf2118026.html#a5852024
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] A wicket Problem?

2006-08-16 Thread wired

I use the following CSS code to center a page in a browser

wrap{
color:#404040;
width:970px;
margin:10px auto;
padding:0;
}

Using it a simple html page, the code works with Firefox 1.5.0.6, Internet
Explorer 6.0.2 and Opera 9.01

Now when I use the code in a wicket application the page renders correctly
with Firefox and Opera but not Internet Explorer. IE cannot center the page.

This is strange for it works in a simple test html page with IE.

Is wicket to blame? Is it generating extra html markup that is causing IE to
act strangely? (yet I cannot see anything odd upon examining the source
code)

Any help would be greatly appreciated! 
-- 
View this message in context: 
http://www.nabble.com/A-wicket-Problem--tf2118026.html#a5841261
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] A wicket Problem?

2006-08-16 Thread Gwyn Evans
Different DTD's in your examples  in the Wicket pages?

/Gwyn

On 16/08/06, wired [EMAIL PROTECTED] wrote:

 I use the following CSS code to center a page in a browser

 wrap{
 color:#404040;
 width:970px;
 margin:10px auto;
 padding:0;
 }

 Using it a simple html page, the code works with Firefox 1.5.0.6, Internet
 Explorer 6.0.2 and Opera 9.01

 Now when I use the code in a wicket application the page renders correctly
 with Firefox and Opera but not Internet Explorer. IE cannot center the page.

 This is strange for it works in a simple test html page with IE.

 Is wicket to blame? Is it generating extra html markup that is causing IE to
 act strangely? (yet I cannot see anything odd upon examining the source
 code)

 Any help would be greatly appreciated!
 --
 View this message in context: 
 http://www.nabble.com/A-wicket-Problem--tf2118026.html#a5841261
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.1 now! - http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user