This topic is locked
[SOLVED]

 modifying the list page

1/26/2016 4:48:30 AM
PHPRunner General questions
F
Francesco_5000 author

Hi, I need to have a list page with these features


I can't use the Built-in 'Scroll table data' functionality because I've a lot of fields and than the horizontal data grid is very unconfortable. With a simple inspection of the code I solved a part of the problem:


now... the contents in the middle region must be scrollable, I tried to insert this portion of code:



.rnr-center{


padding:5px !important; height:500px !important; overflow-y:scroll !important ; border:0 !important;



}


in Style -> Modify -> Custom CSS
but it doesn't works, do you have any suggestion?

F
Francesco_5000 author 1/28/2016

finally I solved the problem, editing the source code of the list page in this way:



{BEGIN container_grid}

{BEGIN grid_block}

<TABLE class="rnr-c rnr-cont rnr-c-grid rnr-b-grid rnr-gridtable rnr-columns" style="height:600px; overflow-y:scroll; display:block;" cellpadding="0">

etc etc etc

</TABLE>

{END grid_block}

{END container_grid}


it's not so simple to edit a presetted layout, but it worked :-)