Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Martin Makundi
What is your problem with this? Inheritance?

**
Martin

2010/7/2 duncan787 duncan...@gmail.com:

 I have been trying for several days to get this to work.  I am trying to
 write a generic Wicket Panel that I can reuse to display columns and rows
 from any given datasource.

 The generic Panel needs to support a dynamic number of rows and a dynamic
 number of columns.  Hence the nested repeaters.  I can't get it to work and
 am dying trying!  Any help would be GREATLY appreciated!

 wicket:panel
  table
    tr
      th wicket:id=columnNameRepeater[column name here]/th
    /tr
    tr wicket:id=dataRowRepeater
      td wicket:id=columnRepeater[cell data here]/td
      td wicket:id=not_a_repeater_only_one_column_needed_here[Insert
 Button, Delete Button]/td
    /tr
  /table
 /wicket:panel


 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Nested-Repeaters-in-an-HTML-Table-Uggh-tp2276861p2276861.html
 Sent from the Wicket - User mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Zilvinas Vilutis
Show your component code and the error if you want someone to help this
problem fixed.


Žilvinas Vilutis

Mobile:   (+370) 652 38353
E-mail:   cika...@gmail.com


On Fri, Jul 2, 2010 at 12:58 PM, duncan787 duncan...@gmail.com wrote:


 I have been trying for several days to get this to work.  I am trying to
 write a generic Wicket Panel that I can reuse to display columns and rows
 from any given datasource.

 The generic Panel needs to support a dynamic number of rows and a dynamic
 number of columns.  Hence the nested repeaters.  I can't get it to work and
 am dying trying!  Any help would be GREATLY appreciated!

 wicket:panel
  table
tr
  th wicket:id=columnNameRepeater[column name here]/th
/tr
tr wicket:id=dataRowRepeater
  td wicket:id=columnRepeater[cell data here]/td
  td wicket:id=not_a_repeater_only_one_column_needed_here[Insert
 Button, Delete Button]/td
/tr
  /table
 /wicket:panel


 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Nested-Repeaters-in-an-HTML-Table-Uggh-tp2276861p2276861.html
 Sent from the Wicket - User mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Ernesto Reinaldo Barreiro
Why not use DataGridView?

On Fri, Jul 2, 2010 at 9:58 PM, duncan787 duncan...@gmail.com wrote:

 I have been trying for several days to get this to work.  I am trying to
 write a generic Wicket Panel that I can reuse to display columns and rows
 from any given datasource.

 The generic Panel needs to support a dynamic number of rows and a dynamic
 number of columns.  Hence the nested repeaters.  I can't get it to work and
 am dying trying!  Any help would be GREATLY appreciated!

 wicket:panel
  table
    tr
      th wicket:id=columnNameRepeater[column name here]/th
    /tr
    tr wicket:id=dataRowRepeater
      td wicket:id=columnRepeater[cell data here]/td
      td wicket:id=not_a_repeater_only_one_column_needed_here[Insert
 Button, Delete Button]/td
    /tr
  /table
 /wicket:panel


 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Nested-Repeaters-in-an-HTML-Table-Uggh-tp2276861p2276861.html
 Sent from the Wicket - User mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Nested Repeaters in an HTML Table -- Uggh!

2010-07-02 Thread Igor Vaynberg
wicket:panel
 table
   tr
 th wicket:id=columnNameRepeater[column name here]/th
 thactions/th
   /tr
   tr wicket:id=dataRowRepeater
 td wicket:id=columnRepeater[cell data here]/td
 tdinput type=submit wicket:id=delete value=delete//td
   /tr
 /table
/wicket:panel

-igor

On Fri, Jul 2, 2010 at 12:58 PM, duncan787 duncan...@gmail.com wrote:

 I have been trying for several days to get this to work.  I am trying to
 write a generic Wicket Panel that I can reuse to display columns and rows
 from any given datasource.

 The generic Panel needs to support a dynamic number of rows and a dynamic
 number of columns.  Hence the nested repeaters.  I can't get it to work and
 am dying trying!  Any help would be GREATLY appreciated!

 wicket:panel
  table
    tr
      th wicket:id=columnNameRepeater[column name here]/th
    /tr
    tr wicket:id=dataRowRepeater
      td wicket:id=columnRepeater[cell data here]/td
      td wicket:id=not_a_repeater_only_one_column_needed_here[Insert
 Button, Delete Button]/td
    /tr
  /table
 /wicket:panel


 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Nested-Repeaters-in-an-HTML-Table-Uggh-tp2276861p2276861.html
 Sent from the Wicket - User mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org