On Mon, Mar 2, 2009 at 7:03 PM, David <[email protected]> wrote:
>
> Is it possible to create a new browser window popup with an ajax
> call?
Yup.
> I want to open a new window and then trigger window.print()
> like google docs and maps. I know you can create new browser popups
> with link_to by using :popup => ['new', 'height=300,width=300'], but I
> don't think you can use it with link_to_remote. Is there a way to
> programmatically render some inline javascript? I tried:
>
> window.open('test/popup'
> 'mywin','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');
>
> But I was unable to load anything into the popup view.
html:
<%= link_to_remote 'Popup', :url => { :controller => :home, :action =>
:popup } %>
popup.rjs:
page << "window.open('/home/window', 'mywin',
'left=20,top=20,width=500,height=500,toolbar=1,resizable=0' );"
--
Greg Donald
http://destiney.com/
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---