Monday, June 11, 2012

Nice Action buttons meets Wicket

For my Block A Sender project I needed nice action buttons. I was lucky to find this post.  Here is how they look:
Google style buttons
To get them in Wicket is really simple:
  1. Grab CSS from this post. and add to your project
  2. Add some link in java:
     add(new BookmarkablePageLink("home_link", HomePage.class));
  3. And HTML
    <button class="action bluebtn" wicket:id="home_link">Home</button>
That's it :)

No comments:

Post a Comment