Hide the footer buttons in Preview extension

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
onoboa
User
Posts: 86
Location: Guayaquil - Ecuador

Hide the footer buttons in Preview extension

Post by onoboa »

Hi,

I'm use the preview extension for a master/detail with multiple details. When in the master list page I collapse the detail, it swhows 3 buttons in the foother preview section.

MasterDetailListLink
MasterDetailViewLink
MasterDetailEditLink

How can I hide this buttons in the server side Preview Page?

Thanks,

Omar


mobhar
User
Posts: 11736

Post by mobhar »

Not sure how to do this by using server event.

However, if you want to use jQuery code, then you may simply put this following code under Client Scripts -> Table-Specific -> Preview Page -> Startup Script:

$(".ew-detail-btn-group.btn-group.btn-group-sm").hide();

Post Reply