Page 1 of 1

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

Posted: Wed Jan 25, 2023 10:38 pm
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


Re: hide add/edit button and hide add/edit master detail button

Posted: Thu Jan 26, 2023 8:39 am
by mobhar

You may try:

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

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

Posted: Thu Jan 26, 2023 11:02 am
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.


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

Posted: Thu Jan 26, 2023 11:35 am
by lamany77

Dear all
thank you for your advice