Forums

print css

giuseppedilalla 06 Feb, 2009
Hi,
In my frum, after submission, I need that the users print the form results page..

so maybe I need to insert a css print.. or I don't know how to do..

do you have any idea?

Thanks a lot!
GreyHead 06 Feb, 2009
Hi guiseppedilalla,

Here is some code for creating a Joomla print icon. It's adapted from another project and not tested with ChronoForms so may need debugging!!
<?php
// set link for print view
$base_link  = "/index.php?option=com_chronocontact&formname=my_form_name&task=send&tmpl=component&print=1";
$printlink  = "<a rel='nofollow'";
$printlink .= " onclick=\"window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;\"";
$printlink .= "	href='".$base_link."'>".JHTML::_('image.site', 'printButton.png')."</a>";
echo $printlink;
?>

Bob
This topic is locked and no more replies can be posted.