Page 1 of 1

Add a button on edit page

Posted: Thu Dec 08, 2022 5:16 am
by christ2000

Hello, where can i place a code to add a button on edit page, next to Save and Cancel Button?
thanks


Re: Add a button on edit page

Posted: Thu Dec 08, 2022 8:58 am
by mobhar

You may use jQuery .append in Startup Script.


Re: Add a button on edit page

Posted: Thu Dec 08, 2022 9:35 am
by christ2000

Hello could be something like:

$( ".btn-action" ).append( $( "xxx" ) );

on edit page -> client script

or it is wrong?

thanks


Re: Add a button on edit page

Posted: Thu Dec 08, 2022 10:18 am
by arbei

You may also read DOM Insertion, Outside.


Re: Add a button on edit page

Posted: Sat Dec 10, 2022 7:10 am
by christ2000

Thanks guys!!