Re: mouse over table cells and dialog popup with ajaxlinks

2010-09-19 Thread Ernesto Reinaldo Barreiro
Sorry I misunderstood you. You could: 1-use some abstract AJAX behavior and attach to your table. 2-you use this behavior to construct an URL (with urlFor(beahvior)) and "pass it" to the client side. 3-on client side you use previous URL to construct your panel and links and use wiketAjaxGet() Jav

mouse over table cells and dialog popup with ajaxlinks

2010-09-19 Thread Jason Novotny
Hi, I have a fairly complex use-case scenario: I want a dialog to popup when a "hover" event occurs within a table cell. The dialog will provide a couple of links (ideally AjaxLink) that should trigger a wicket ajax event. I can imagine maybe creating the dialogs all on the client s

Re: mouse over table cells and dialog popup with ajaxlinks

2010-09-18 Thread Jason Novotny
Thanks! My real concern isn't so much the creation of the dialog/tooltip but how do I create a wicket appropriate link in that dialog/tooltip in order to edit the item that is contained in the table cell? Thanks again, Jason On 9/18/10 8:08 AM, Ernesto Reinaldo Barreiro wrote:

Re: mouse over table cells and dialog popup with ajaxlinks

2010-09-18 Thread Ernesto Reinaldo Barreiro
Jason, I do a similar thing for one of my applications. I have a table and when the user hovers the mouse over some button on each row then I show a "dialog" with more details about the row. What I do is having a hidden div next to the table and make it appear, its contents updated via AJAX, with

Re: mouse over table cells and dialog popup with ajaxlinks

2010-09-17 Thread Jeremy Thomerson
On Fri, Sep 17, 2010 at 7:13 PM, Jason Novotny wrote: > Hi, > >I have a fairly complex use-case scenario: I want a dialog to popup when > a "hover" event occurs within a table cell. The dialog will provide a couple > of links (ideally AjaxLink) that should trigger a wicket ajax event. > >

mouse over table cells and dialog popup with ajaxlinks

2010-09-17 Thread Jason Novotny
Hi, I have a fairly complex use-case scenario: I want a dialog to popup when a "hover" event occurs within a table cell. The dialog will provide a couple of links (ideally AjaxLink) that should trigger a wicket ajax event. I can imagine maybe creating the dialogs all on the client s