Re: Links in DataTable

2010-06-30 Thread Nelson Segura
Can anyone explain to me why this does not work with AjaxFallbackDefaultDataTable, but does with DefaultDataTable. Does anyone know of a solution for this problem? On Mon, Jun 28, 2010 at 6:18 PM, Nelson Segura nsegu...@gmail.com wrote: Since AjaxLink is AJAX and not a proper link, then it does

Re: Links in DataTable

2010-06-30 Thread Branislav Kalas
Put this into WicketApplication.java @Override protected void init() { super.init(); getPageSettings().setAutomaticMultiWindowSupport(true); } Problem was, that you opened new windows in same page map. I cannot explain it better cause, i don't understand page maps very

Re: Links in DataTable

2010-06-30 Thread Branislav Kalas
and i forgot this in the onclick handler : @Override protected void onClick() { setResponsePage(new HomePage(parameters)); System.out.println(clicked on link); } On 06/30/2010 07:59 PM, Branislav Kalas wrote: Put this into WicketApplication.java @Override protected void

Re: Links in DataTable

2010-06-30 Thread Nelson Segura
Thanks for your answers. I set the multi window support settings to true, and that did not make a difference. Interestingly, the javadoc shows that multiwindow support is true by default. I also tried setting it to false, with no luck. However, setting the response to a new page on click seems

Re: Links in DataTable

2010-06-30 Thread Jeremy Thomerson
On Wed, Jun 30, 2010 at 1:14 PM, Branislav Kalas bka...@gmail.com wrote: and i forgot this in the onclick handler : @Override protected void onClick() { setResponsePage(new HomePage(parameters)); System.out.println(clicked on link); } The whole point of a constructor that

Links in DataTable

2010-06-28 Thread Nelson Segura
I am trying to create a table based on DataTable, in which one of the columns has links on it. I tried to use the strategy described here (LinkPanel): https://cwiki.apache.org/WICKET/adding-links-in-a-defaultdatatable.html But this has a problem: clicking in the links in succession soon causes

Re: Links in DataTable

2010-06-28 Thread Jeremy Thomerson
please show some code On Mon, Jun 28, 2010 at 6:39 PM, Nelson Segura nsegu...@gmail.com wrote: I am trying to create a table based on DataTable, in which one of the columns has links on it. I tried to use the strategy described here (LinkPanel):

Re: Links in DataTable

2010-06-28 Thread Nelson Segura
Jeremy, the code is below. I did notice something while researching/testing more. The LinkPanel solution DOES work for a DataTable. The problem starts when changed to a AjaxFallbackDefaultDataTable. I did testing based in the datatable example in the wicket examples. Maybe using an AjaxLink

Re: Links in DataTable

2010-06-28 Thread Nelson Segura
Since AjaxLink is AJAX and not a proper link, then it does behave as a normal link, i.e. middle click (open link in new tab or new window) does not trigger the AJAX click even, which means you cannot chose to open the link in a new page. back to square one, except that know I know is a problem

Reorder links in DataTable

2008-08-19 Thread Artem D.
(ReuseIfModelsEqualStrategy.getInstance()) and DataProvider should be a simple wrapper around List object but could not find a more or less generic way to implement ListView reordering behavior. -- View this message in context: http://www.nabble.com/Reorder-links-in-DataTable-tp19062831p19062831.html Sent from