Re: [Wicket-user] Repaint single row of a DataTable

2007-07-23 Thread Timo Rantalaiho
On Thu, 19 Jul 2007, ChuckDeal wrote: > I am not locked into the DataTable, but I think the repeater is the best > component for what I am trying to do. Is that correct? My general feeling, based on the couple of Wicket projects that I've been involved in, is that DataTable is best suited for a

Re: [Wicket-user] Repaint single row of a DataTable

2007-07-19 Thread ChuckDeal
igor.vaynberg wrote: > > this is tricky because datatable encapsulates a lot of this stuff so it > will > probably need something exposed for this usecase. if you create a > quickstart > that has a datatable, some bogus data, and some links in columns that > should > trigger a refresh i can play

Re: [Wicket-user] Repaint single row of a DataTable

2007-07-19 Thread Matej Knopp
AjaxRequestTarget target; target.addComponent(item); where item is a repeater Item. This doesn't work for you? What wicket version are you using? -Matej On 7/19/07, ChuckDeal <[EMAIL PROTECTED]> wrote: > > > ptrthomas wrote: > > > > How about this thread: > > > > http://www.nabble.com/Adding-it

Re: [Wicket-user] Repaint single row of a DataTable

2007-07-19 Thread ChuckDeal
Matej Knopp-2 wrote: > > AjaxRequestTarget target; > target.addComponent(item); > > where item is a repeater Item. > > This doesn't work for you? What wicket version are you using? > > -Matej > 1.3.0-SNAPSHOT Here's how the Column is created... basically it is adding a custom Fragment to

Re: [Wicket-user] Repaint single row of a DataTable

2007-07-19 Thread Igor Vaynberg
this is tricky because datatable encapsulates a lot of this stuff so it will probably need something exposed for this usecase. if you create a quickstart that has a datatable, some bogus data, and some links in columns that should trigger a refresh i can play around with it and see what needs to be

Re: [Wicket-user] Repaint single row of a DataTable

2007-07-19 Thread ChuckDeal
ptrthomas wrote: > > How about this thread: > > http://www.nabble.com/Adding-item-to-ListView-over-Ajax---refresh-only-newest-row-t3971491.html#a11572531 > > Does this help? > > Thanks, > > Peter. > Not quite, I want to be able to repaint a row that has already been output. Although, this

Re: [Wicket-user] Repaint single row of a DataTable

2007-07-19 Thread Peter Thomas
On 7/19/07, ChuckDeal <[EMAIL PROTECTED]> wrote: > > > I searched for answers to this problem, but most responses were to repaint > the whole table (or more specifically, the container holding the table). > > I am trying to make an editable grid. In addition to that, when some cell > contents chan