This topic is locked

Online Permissions

8/24/2015 11:34:16 AM
PHPRunner General questions
author

I have a PHPrunner project in v8 and have set all my tables in the project to fixed so that the header is always fixed. I want to do the same in the admin area, how do I do it?

Sergey Kornilov admin 8/24/2015

Unfortunately I don't know what "set all my tables in the project to fixed" means but I guess you can try the same approach with permissions tables.

7542 8/25/2015

Hi Sorry
You call it "Scroll table Data" in PHPRUNNER APP >> Pages >> Settings
ON all tables if you check this it freezes the top header and footer, but this does not work in the admin section, how can I make it work their.

Sergey Kornilov admin 8/25/2015

I see what you saying. Unfortunately there is no such feature for permissions tables.

7542 8/25/2015

Any hack that we can do, as my client as seen the feature every where else and has asked that I do it here?

Sergey Kornilov admin 8/26/2015

You need to see what kind of HTML/CSS code makes regular list page tables fixed and apply the same idea to permissions tables.

7542 8/28/2015

That I guess is obvious. I was hoping for a better solution+ I hope this sort of thing you build in to future releases as its really a bug as you can select it for admin users but it does not work.

HJB 8/28/2015

HTML sample code to be edited as wished and inserted as HTML code under VISUAL EDITOR into the ADMIN page then:
<html>

<body style="height:100%; width:100%">

<div id="header" style="position:absolute; top:0px; left:0px; height:200px; right:0px;overflow:hidden;">

</div>

<div id="content" style="position:absolute; top:200px; bottom:200px; left:0px; right:0px; overflow:auto;">

</div>

<div id="footer" style="position:absolute; bottom:0px; height:200px; left:0px; right:0px; overflow:hidden;">

</div>

</body>

</html>