hide add/edit button and hide add/edit master detail button (v2020)

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
lamany77
User
Posts: 144

hide add/edit button and hide add/edit master detail button (v2020)

Post by lamany77 »

Dear all
how do i hide the add/edit button ....
and how do i add/edit master detail button

i've try
$(".ewDetailAdd").hide(); // hide Add master/detail button
$(".ewDetailEdit").hide(); // hide Add master/detail button

but not work
i've using phpmaker 2020


mobhar
User
Posts: 11660

Post by mobhar »

You may try:

$(".ew-detail-add").hide();
$(".ew-detail-edit").hide();

arbei
User
Posts: 9284

Post by arbei »

In your Chrome browser, right click the HTML element you want to check and select Inspect to check the actual id or class of the HTML element, read Open the Elements panel to inspect the DOM or CSS.


lamany77
User
Posts: 144

Post by lamany77 »

Dear all
thank you for your advice


Post Reply