Advertisement
Guest User

Untitled

a guest
Apr 13th, 2011
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <title>Apache Wicket Quickstart</title>
  6.         <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:regular,bold' rel='stylesheet' type='text/css' />
  7.         <link rel="stylesheet" href="style.css" type="text/css" media="screen" title="Stylesheet" charset="utf-8" />
  8.         <!--  uncomment the following line and the problem disappears -->
  9.         <!--  script type="text/javascript" src="./wicket/resource/org.apache.wicket.ajax.WicketAjaxReference/wicket-ajax-ts1302183319615.js"></script-->
  10.        
  11.     </head>
  12.     <body>
  13.         <div id="hd">
  14.         </div>
  15.         <div id="bd">
  16.            
  17.             <table wicket:id="list-container">
  18.             <tbody>
  19.             <tr wicket:id="rows">
  20.                 <td><span wicket:id="label"></span> <a wicket:id="remove" href="#">link</a></td>
  21.             </tr>
  22.             </tbody>
  23.             </table>
  24.            
  25.             <div wicket:id="button-container">
  26.                 <input type="button" wicket:id="button" value="add row"/>  
  27.             </div>
  28.         </div>
  29.         <div id="ft">
  30.         </div>
  31.     </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement