This topic is locked

Hide Search Panel

6/29/2022 7:19:30 PM
PHPRunner Tips and Tricks
M
Mauipm author

Hi,
I need to hide the search panel (by code) of a List Page when it is a Detail list under a master page
How can I do?
Simply: 1) I need to know that I am a list page under a master; 2) the code to hide the search panel

Thanks for yor suggestion

Mauro

fhumanes 8/25/2022

Hello,

I have made this example:

  • List of "Master"

img alt

  • List of "detail"

img alt

This code is done in the "JavaScript Onload Event" event of the "List" page of "Detail"

$( "#ctlSearchFor1" ).hide();
$( "#searchButtTop1" ).hide();

Cheers,
fernando