A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
I am trying to add a print button to specific page. Tried simple javascript like below, but printer dialog doesn't open. Any trick to this with mojo?
<form><input onclick="window.print();return false;" type="button" value=" Print this page " /></form>
you can't add a form element, try it without that
Actually worked. Had to refresh the page Thanks!