views:

3610

answers:

5

I want to use apache wicket for pagination but i am not much aware of that . so if anyone can tell me where can i find the examples and tutorials ,

+1  A: 

What is wrong with the apache wicket - examples?

Here is another tutorial from IBM.

Peter
thanks for giving these links
Aryabhatt
+2  A: 

Go to wicketizer.org and build your own Application - than you can debug it :-)

thank you for giving a good source of link .
Aryabhatt
+1  A: 

None of the tutorials i have seen will get you very far. I found the examples provided for the wicket components most useful (http://wicketstuff.org/wicket13/compref/)

seric
A: 
  • For simple stuff check out the official examples, especially the Hello World one.
  • For a bit more advanced topics see Wicket's Reference Library
  • Have the Wicket javadocs (1.3, 1.4) available at all times, there's a lot of information there too.
  • Go ask the Wicket Community if you have any specific questions, they're more than willing to help.
  • Cash in and get Wicket in Action, it's made by Wicket's authors and it's a really great book.

As for your request, pagination is a feature of a datagrid type component such as DataTable so you can't have only Wicket's pagination on the page while other page content is handled by some other framework.

This is, of course, assuming that you mean that by pagination, if you mean you want to build your entire site with Wicket (which is what I recommend) then all the links above apply.

Esko
+1  A: 

The 5 Days of Wicket - http://www.mysticcoders.com/blog/2009/03/09/5-days-of-wicket/

ThaDon