Re: popup LinkSubmit

2006-08-17 Thread Mael Caldas

I'm thinking about use the DirectLink, passing the entity id as the
parameter on each link, and them retrieve the entity from database on the
listener, like I said... will be easier..

Thanks Jesse!



On 8/16/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


You'll probably have to change the forms target back to what it was
previously - after opening the popup..(I think it's called _self ? )

There's probably a more elegant way to do it in javascript but I'm just
reciting what I saw recently on another tap3 based project that did
exactly
what you describe wanting. (using the target stuff, it didn't look pretty
to
me but they weren't paying me to fix that ;) )

On 8/16/06, Mael Caldas [EMAIL PROTECTED] wrote:

 The problem is that there are another links that submits the same form,
 but
 I don't want to pop up in these  another links. Just in one.

 The case is, I have some Entities, listed by name, with links to edit,
 remove e show details (Using AjaxDirectLink, like the flags on Tacos),
and
 a
 link called print, of course, to print, but, when the user click on
 print
 button, I need to present the information in another page, without
 decorations, to make the details printable, and perform a kind of print
 Preview, removing the Browsers features, (location bar, status, menu and
 so
 on).

 With the DirectLink, is perfect, popup the window without the features,
 but
 I can't select the entity, and pass to the page to present the
 information... I thought about one solution, by using the entity id on
the
 link parameter, and use the parameter to retrieve the entity from
database
 on the listener, and setup the page. But is not a good thing, once I
 already
 have all the entities on the memory...

 Thanks for the suggestion

 Mael


 On 8/16/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:
 
  You can change the target of the form temporarilySomething like:
 
  form onSubmit=this.target=_blank 
 
  Something like that, you'll have to google the details...Just make
sure
  you
  call IRequestCycle.activate() on the other page to be sure it gets
  rendered
  out to the popup.
 
  On 8/16/06, Mael Caldas [EMAIL PROTECTED] wrote:
  
   Hi!
  
   I need to submit a form clicking on a link on the selected entity,
 pass
   the
   selected entity to a page, and present this page in a popup. So I
want
  to
   use a kind of popup LinkSubmit, but I only know how to do a popup
link
   with
   DirectLink, using the PopupLinkRenderer...
  
   Any idea?
  
   Thanks!
  
   Mael
  
  
 
 
  --
  Jesse Kuhnert
  Tapestry/Dojo/(and a dash of TestNG), team member/developer
 
  Open source based consulting work centered around
  dojo/tapestry/tacos/hivemind.
 
 




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind.




Re: popup LinkSubmit

2006-08-16 Thread Jesse Kuhnert

You can change the target of the form temporarilySomething like:

form onSubmit=this.target=_blank 

Something like that, you'll have to google the details...Just make sure you
call IRequestCycle.activate() on the other page to be sure it gets rendered
out to the popup.

On 8/16/06, Mael Caldas [EMAIL PROTECTED] wrote:


Hi!

I need to submit a form clicking on a link on the selected entity, pass
the
selected entity to a page, and present this page in a popup. So I want to
use a kind of popup LinkSubmit, but I only know how to do a popup link
with
DirectLink, using the PopupLinkRenderer...

Any idea?

Thanks!

Mael





--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind.


Re: popup LinkSubmit

2006-08-16 Thread Mael Caldas

The problem is that there are another links that submits the same form, but
I don't want to pop up in these  another links. Just in one.

The case is, I have some Entities, listed by name, with links to edit,
remove e show details (Using AjaxDirectLink, like the flags on Tacos), and a
link called print, of course, to print, but, when the user click on print
button, I need to present the information in another page, without
decorations, to make the details printable, and perform a kind of print
Preview, removing the Browsers features, (location bar, status, menu and so
on).

With the DirectLink, is perfect, popup the window without the features, but
I can't select the entity, and pass to the page to present the
information... I thought about one solution, by using the entity id on the
link parameter, and use the parameter to retrieve the entity from database
on the listener, and setup the page. But is not a good thing, once I already
have all the entities on the memory...

Thanks for the suggestion

Mael


On 8/16/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:


You can change the target of the form temporarilySomething like:

form onSubmit=this.target=_blank 

Something like that, you'll have to google the details...Just make sure
you
call IRequestCycle.activate() on the other page to be sure it gets
rendered
out to the popup.

On 8/16/06, Mael Caldas [EMAIL PROTECTED] wrote:

 Hi!

 I need to submit a form clicking on a link on the selected entity, pass
 the
 selected entity to a page, and present this page in a popup. So I want
to
 use a kind of popup LinkSubmit, but I only know how to do a popup link
 with
 DirectLink, using the PopupLinkRenderer...

 Any idea?

 Thanks!

 Mael




--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind.




Re: popup LinkSubmit

2006-08-16 Thread Jesse Kuhnert

You'll probably have to change the forms target back to what it was
previously - after opening the popup..(I think it's called _self ? )

There's probably a more elegant way to do it in javascript but I'm just
reciting what I saw recently on another tap3 based project that did exactly
what you describe wanting. (using the target stuff, it didn't look pretty to
me but they weren't paying me to fix that ;) )

On 8/16/06, Mael Caldas [EMAIL PROTECTED] wrote:


The problem is that there are another links that submits the same form,
but
I don't want to pop up in these  another links. Just in one.

The case is, I have some Entities, listed by name, with links to edit,
remove e show details (Using AjaxDirectLink, like the flags on Tacos), and
a
link called print, of course, to print, but, when the user click on
print
button, I need to present the information in another page, without
decorations, to make the details printable, and perform a kind of print
Preview, removing the Browsers features, (location bar, status, menu and
so
on).

With the DirectLink, is perfect, popup the window without the features,
but
I can't select the entity, and pass to the page to present the
information... I thought about one solution, by using the entity id on the
link parameter, and use the parameter to retrieve the entity from database
on the listener, and setup the page. But is not a good thing, once I
already
have all the entities on the memory...

Thanks for the suggestion

Mael


On 8/16/06, Jesse Kuhnert [EMAIL PROTECTED] wrote:

 You can change the target of the form temporarilySomething like:

 form onSubmit=this.target=_blank 

 Something like that, you'll have to google the details...Just make sure
 you
 call IRequestCycle.activate() on the other page to be sure it gets
 rendered
 out to the popup.

 On 8/16/06, Mael Caldas [EMAIL PROTECTED] wrote:
 
  Hi!
 
  I need to submit a form clicking on a link on the selected entity,
pass
  the
  selected entity to a page, and present this page in a popup. So I want
 to
  use a kind of popup LinkSubmit, but I only know how to do a popup link
  with
  DirectLink, using the PopupLinkRenderer...
 
  Any idea?
 
  Thanks!
 
  Mael
 
 


 --
 Jesse Kuhnert
 Tapestry/Dojo/(and a dash of TestNG), team member/developer

 Open source based consulting work centered around
 dojo/tapestry/tacos/hivemind.







--
Jesse Kuhnert
Tapestry/Dojo/(and a dash of TestNG), team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind.