Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-26 Thread landry soules
Thank you very much for your support. Actually, i'm using Mysql and was wondering how to set a min and max limit on a select. And because i love exotic solutions, i use Cayenne for persistence :-) I will check if Cayenne can do the thing, but Eelco's solution seems very satisfying. 2007/6/25,

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-26 Thread Gwyn Evans
On Tuesday, June 26, 2007, 9:25:15 AM, landry [EMAIL PROTECTED] wrote: Thank you very much for your support. Actually, i'm using Mysql and was wondering how to set a min and max limit on a select. And because i love exotic solutions, i use Cayenne for persistence I will check if Cayenne can

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-26 Thread landry soules
I'm as newbie to Cayenne as i am to Wicket, so i'm not sure that i do things the right way ! Anyway, i will have some free time this summer : a good occasion to complete the wiki. 2007/6/26, Gwyn Evans [EMAIL PROTECTED]: On Tuesday, June 26, 2007, 9:25:15 AM, landry [EMAIL PROTECTED] wrote:

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Landry Soules
Thank you so much for your answer. GridView seems to achieve exactly what i need. A problem remains, however : i don't know how to implement IDataProvider.iterator(int first, int count). Must be something like this in oracle : select * from mytable where rownum=first and rownum count But how to

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Gwyn Evans
On Monday, June 25, 2007, 9:54:58 PM, Landry [EMAIL PROTECTED] wrote: A problem remains, however : i don't know how to implement IDataProvider.iterator(int first, int count). Must be something like this in oracle : select * from mytable where rownum=first and rownum count Actually, in

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Eelco Hillenius
On Monday, June 25, 2007, 9:54:58 PM, Landry [EMAIL PROTECTED] wrote: A problem remains, however : i don't know how to implement IDataProvider.iterator(int first, int count). Must be something like this in oracle : select * from mytable where rownum=first and rownum count Actually, in

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Scott Swank
http://www.oracle.com/technology/oramag/oracle/07-jan/o17asktom.html ;) On 6/25/07, Gwyn Evans [EMAIL PROTECTED] wrote: On Monday, June 25, 2007, 9:54:58 PM, Landry [EMAIL PROTECTED] wrote: A problem remains, however : i don't know how to implement IDataProvider.iterator(int first, int

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Scott Swank
On 6/25/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On Monday, June 25, 2007, 9:54:58 PM, Landry [EMAIL PROTECTED] wrote: A problem remains, however : i don't know how to implement IDataProvider.iterator(int first, int count). Must be something like this in oracle : select * from

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-23 Thread Johannes Schneider
Hi, I am a Wicket Newbie - so I'm sure this isn't he best solution I have... I see two easy solutions: 1: Convert your data into some sort of row model. You could create some sort of strategy that is used as model for the item. Each strategy resolves one value of the customer. Instead of

[Wicket-user] A trivial problem with tables that i can't manage

2007-06-23 Thread Landry Soules
Hello, I have a very simple problem: i just want to display a table of customers, with some infos on each entry. No problem to achieve that when you deal with one record per line. The problem is that i want to display 4 customers on each row, as this : =

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-23 Thread Igor Vaynberg
On 6/23/07, Landry Soules [EMAIL PROTECTED] wrote: Hello, I have a very simple problem: i just want to display a table of customers, with some infos on each entry. No problem to achieve that when you deal with one record per line. The problem is that i want to display 4 customers on each row,