I am trying to add an option to print my view, i.e the display webpage
in my Rails application.At present I am using HTML DOM for that but I
want to do that in ruby.Following some online tutorials, I am trying to
use rjs for that. the codes are some thing like this
# view.rhtml
<%=link_to_remote ("Print Page", :url => {:action => :print})%><br />
# doc.rjs
page.hide 'header'
page.hide 'header2'
page.<<'javascript:window.open();'
page.show 'header'
page.show 'header2'
Can anyone give some idea as to why this is not working?I have very less
knowledge in this.Is there any other way to do the same?
--
Posted via http://www.ruby-forum.com/.
Rakoth wrote:
> Hi, Manisha Tripathy.
>
> You can solve this problem by creating special css for printer,
>
> <%= stylesheet_link_tag "print_style", :media => "print" %>
>
> and in print_style.css
>
> #header{
> display:none;
> }
> and so on..
>
> On Jun 4, 1:41�pm, Manisha Tripathy <rails-mailing-l...@andreas-s.net>
--
Posted via http://www.ruby-forum.com/.