This topic is locked
[SOLVED]

 Print Link in Add page

3/16/2015 11:25:51 AM
PHPRunner General questions
M
msalim author

When we save a record on add page, on the message section it is displayed that <<< Record was added >>> with option for Edit View, is there a way to put a link for print.
Also, how to hide or disable a custom button and when a record is added/update, the button should be enabled / unhidden.
Thanks

Sergey Kornilov admin 3/16/2015

We do not have a separate one record print page but user can go to View page and click Print button there.
You you do not have a Print button on your View page and can insert a custom button named 'Print'. This is what you need to add to 'Client Before' event:

window.print();
M
msalim author 3/16/2015



We do not have a separate one record print page but user can go to View page and click Print button there.
You you do not have a Print button on your View page and can insert a custom button named 'Print'. This is what you need to add to 'Client Before' event:

window.print();



Ok got it. Thanks