[SOLVED] How to remove header and footer cells from popup |
2/22/2024 7:53:55 AM |
PHPRunner General questions | |
P
pmuckle authorDevClub member
Hi All, How can I remove the header and footer cells from a list popup used in a lookup? Highlighted in red in the screenshot.
Thanks for any help Pete |
|
P
|
pmuckle authorDevClub member 2/22/2024 |
Also, how can I make it so the user can also click on the image to make a selection |
D
|
DRCR Dev 2/29/2024 |
I went into the HTML code and got the names of the containers and used the same javascript I use to hide the default index menus. This is what I used in the javascript section of events: $("div[data-menu-width]").hide(); Yours might differ. |
P
|
pmuckle authorDevClub member 3/2/2024 |
Thanks, I've got it looking how I want (almost) by modifying the css. |
Sergey Kornilov 3/2/2024 | |
Just wanted to add that CSS is most likely the easiest option here. |