yes please, send me the files

Juergen

On 10/17/05, Vinsen, Kevin <[EMAIL PROTECTED]> wrote:
>
> I have a similar problem. I've created a class to hold the basic layout
> (using CSS) so I need to include a one stylesheet - I've then created a
> child of that class, which includes a panel - which needs an additional
> style sheet and some javascript. The upshot is two <head> entries and no
> onload in the body.
>
> WoggulBorder.html
> <html xmlns:wicket>
> <wicket:head>
>   <title>Woggul</title>
>   <link rel="stylesheet" type="text/css" href="layout.css" />
> </wicket:head>
> <body>
> <wicket:border>
>  <div id="header">
>   &nbsp;Username:
>   <span wicket:id="username">Username goes here</span>
>  </div>
> ...
>
> UserEdit.html
> <html xmlns:wicket>
> <wicket:head>
>     <link rel="stylesheet" type="text/css" href="feedback.css" />
> </wicket:head>
> <body>
>   <div wicket:id="border">
>     <span wicket:id="feedback">feedbackmessages will be put
> here</span>
>
>     <form wicket:id="form">
> ...
>
> FromToListPanel.html
> <html xmlns:wicket="">
> <wicket:head>
>   <script type="text/javascript" src="fromToList.js"/>
> </wicket:head>
>
> <body onload="createListObjects()">
>   <wicket:panel>
>
>     <table border="1">
> ...
>
> Gives the following in the final rendered HTML
>  <html xmlns:wicket>
> <head>
>  <link rel="stylesheet" type="text/css" href="feedback.css" />
>
>  <title>Woggul</title>
>  <link rel="stylesheet" type="text/css" href="layout.css" />
>
>  <script type="text/javascript" src="fromToList.js"/>
> </head>
> <head>
>  <title>Woggul</title>
>
>  <link rel="stylesheet" type="text/css" href="layout.css" />
>
>  <script type="text/javascript" src="fromToList.js"/>
> </head><body>
>  <div wicket:id="border"><wicket:border>
>  <div id="header">
>  &nbsp;Username:
>  <span wicket:id="username">kevin</span>
>  </div>
>
>
>
> I can zip up all the files and send them to you if it would help
>
> Kevin
>
>
>
> DISCLAIMER:-----------------------------------------------------------------------------------------------
>  This Email may contain confidential and/or privileged information and is
> intended
>  solely for the addressee(s) named. If you have received this information in
> error, or
>  are advised that you have been posted this Email by accident, please notify
> the
>  sender by return Email, do not redistribute it, delete the Email and keep
> no copies.
> ----------------------------------------------------------------------------------------------------------------------
>
>


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to