RE: [Wicket-user] RowSets

2006-01-23 Thread Frank Silbermann








In my browser Ive tried irc.freenode.net
and www.irc.freenode.net and http://irc.freenode.net and all I get are 404 PAGE NOT FOUND
messages. What exactly do you mean by
irc.freenode.net?



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Igor Vaynberg 
To: wicket-user@lists.sourceforge.net


btw if you have a lot of small questions we might be able to better help you at
irc.freenode.net ##wicket 












Re: [Wicket-user] RowSets

2006-01-23 Thread Justin Lee
Using an IRC client to connect to irc.freenode.net and then /join ##wicket.

Frank Silbermann wrote:
 In my browser I’ve tried “irc.freenode.net” and www.irc.freenode.net
 http://www.ifr.freenode.net/ and http://irc.freenode.net
 http://irc.freenode.net/  and all I get are 404 PAGE NOT FOUND
 messages.  What exactly do you mean by irc.freenode.net?
 
  
 
 -Original Message-
 *From:* [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] *On Behalf Of *Igor
 Vaynberg
 *To**:* wicket-user@lists.sourceforge.net
 
 btw if you have a lot of small questions we might be able to better help
 you at irc.freenode.net http://irc.freenode.net ##wicket
 
  
 


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid3432bid#0486dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RowSets

2006-01-23 Thread Eelco Hillenius
You need an IRC client for that, like ChatZilla:
http://www.hacksrus.com/~ginda/chatzilla/ or Mirc:
http://www.mirc.com/. See http://freenode.net/ for the web site.

Eelco


On 1/23/06, Frank Silbermann [EMAIL PROTECTED] wrote:



 In my browser I've tried irc.freenode.net and www.irc.freenode.net and
 http://irc.freenode.net  and all I get are 404 PAGE NOT FOUND messages.
 What exactly do you mean by irc.freenode.net?



 -Original Message-
  From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf
 Of Igor Vaynberg
  To: wicket-user@lists.sourceforge.net

  btw if you have a lot of small questions we might be able to better help
 you at irc.freenode.net ##wicket






---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid3432bid#0486dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] RowSets

2006-01-20 Thread Igor Vaynberg
On 1/20/06, Frank Silbermann [EMAIL PROTECTED] wrote:

















I'm just beginning to go through the
examples, beginning with the component references, and began to wonder: Does wicket provide a component designed
to make it easy to display arbitrary database result sets or row sets? I.e., a component that
displays an arbitrary number of rows and columns?If you have a preset number of columns to display you can use the DataView in wicket-extensions. if you want the number of columns to be configured at runtime you can use DataTable also in wicket-extensions.
you can find examples of both of these in wicket-examples under repeaters section (outside of component ref)
If not, and I wanted to build a panel for
doing so, what would be the approach?
Would I, say, construct a Panel object that contains a ListView, each of whose elements is a ListView -- with the
inner ListView's id attached to a td
tag to build a single row, and the outer ListView's
id attached to a tr tag to build the set of
rows?exactly. You would use a listview inside a listview to generate the matrix you are after. If you are interested have a look at the wicket-extensions code of repeater package. the components there gradualy build up on each other and add functionality that eventually results in a very high level datatable component.
-Igor


Re: [Wicket-user] RowSets

2006-01-20 Thread Igor Vaynberg
oops its actualy Component.setResponsePage() my bad.btw if you have a lot of small questions we might be able to better help you at irc.freenode.net ##wicket-Igor
On 1/20/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
On 1/20/06, Frank Silbermann 
[EMAIL PROTECTED] wrote:

















I'm just beginning to go through the
examples, beginning with the component references, and began to wonder: Does wicket provide a component designed
to make it easy to display arbitrary database result sets or row sets? I.e., a component that
displays an arbitrary number of rows and columns?If you have a preset number of columns to display you can use the DataView in wicket-extensions. if you want the number of columns to be configured at runtime you can use DataTable also in wicket-extensions.
you can find examples of both of these in wicket-examples under repeaters section (outside of component ref)

If not, and I wanted to build a panel for
doing so, what would be the approach?
Would I, say, construct a Panel object that contains a ListView, each of whose elements is a ListView -- with the
inner ListView's id attached to a td
tag to build a single row, and the outer ListView's
id attached to a tr tag to build the set of
rows?exactly. You would use a listview inside a listview to generate the matrix you are after. If you are interested have a look at the wicket-extensions code of repeater package. the components there gradualy build up on each other and add functionality that eventually results in a very high level datatable component.
-Igor