How to disable Print Preview?

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
globaldrip8
Posts: 27
Joined: 2015-12-19 03:59

How to disable Print Preview?

Post by globaldrip8 » 2015-12-31 02:08

Help...im using appgini 5.50,and try to hide Print Preview in Detail view hooks

i tried using this trick on this link http://forums.appgini.com/phpbb/viewtopic.php?t=805

Code: Select all

function TABLENAME_dv($selectedID, $memberInfo, &$html, &$args){
    // ****************************************************************
    // Remove "PRINT PREVIEW" button from the detail view editing form 
    // ****************************************************************
    // HTML for detail view PRINT PREVIEW button as generated by AppGini: 
    //      <button tabindex="2" type="submit" id="dvprint" name="dvprint_x" value="1" 
    //       onclick="$$('form')[0].writeAttribute('novalidate', 'novalidate'); document.myform.reset(); 
    //        return true;"><img src="print-preview.gif" /> __BUTTON LABEL TEXT__</button>
    //
    // Get the global variable for language text
    global $Translation;

    // Get the text of the button label
    $buttLabel = $Translation['Print Preview'];

    // Delete it!
    $html = str_replace("<button tabindex=\"2\" type=\"submit\" id=\"dvprint\" name=\"dvprint_x\" value=\"1\" onclick=\"$$('form')[0].writeAttribute('novalidate', 'novalidate'); document.myform.reset(); return true;\"><img src=\"print-preview.gif\" /> $buttLabel</button>","",$html);
}
but still not work

User avatar
a.gneady
Site Admin
Posts: 1309
Joined: 2012-09-27 14:46
Contact:

Re: How to disable Print Preview?

Post by a.gneady » 2016-01-03 15:50

The code for the print preview button of the detail view might have been slightly changed so using str_replace won't match it .. using regex (regular expressions) is better. Try this:

Code: Select all

$html = preg_replace('/<button.*?dvprint_x.*?<\/button>/i', '', $html);
:idea: AppGini plugins to add more power to your apps:

globaldrip8
Posts: 27
Joined: 2015-12-19 03:59

Re: How to disable Print Preview?

Post by globaldrip8 » 2016-01-04 03:28

Thanks Ahmad,its working well :)

rpierce
Veteran Member
Posts: 266
Joined: 2018-11-26 13:55
Location: Washington State

Re: How to disable Print Preview?

Post by rpierce » 2024-07-10 17:11

Beautiful! Thank you, Ahmad!!

Post Reply