This topic is locked
[SOLVED]

Removing "Back to List"

9/28/2022 1:27:21 PM
ASPRunner.NET General questions
Pete K author

Is there any way to remove the "Back to list" button that appears below the success message after a record is updated (table/edit)? I was able to change the message, but the button was retained.

admin 9/29/2022

Try adding the following to Javascript OnLoad event of the Edit page:

$("button#backButton1").hide();

Pete K author 10/3/2022

Thanks! That didn't quite do it, but it put me on the right track. I inspected the button code on the generated page and discovered the actual id is 'backToMenuButton1'. So I used:

$("button#backToMenuButton1").hide();

That did the trick.