how to freeze several columns when you have 20 to scroll?

hi,in my list view page, i have 20 columns :
col1 : last name
col2 : first name
col3 : other field
col4 : another field
…col20 : another fieldwhen i need to look the columns from 10 to 20, i need to scroll again and again to look at name & firstname !is there a way (like in excel) to freeze several column in the list page view ?Thank you for the tip and to read & write be back.

hi,to solve this user-experience problem, i used the Fixedheadertable extension (member only extension) AND the doubleclic action on row.
So having many columns in a table is not a problem anymore.Solved !

hi,

i give a tips.
even the Fixedheadertable is good solution, i added some useful features :

with the function ListOptions_Rendered() , i had a tootips on the cell which are display the content of the hidden column.
andi change the cursor icon to help the user understand there is an information to read.

by exemple, in the list page, when the user is on the 45e column and need to know the Name which is in the column 1, there he can put the mouse cursor on the cell and wait the tootips to read the column 1 content ! As the mouse cursor changed, he guessed himself the feature.

how i did that ?
in the server function ListOptions_Rendered() :

$this->my_field_in_column45->CellAttrs[“style”] = “cursor: pointer;”;
$this->my_field_in_column45->CellAttrs[“title”]=$this->my_field_in_column1_firstname->ViewValue." ".$this->my_field_in_column2_name->ViewValue;

users told me it is more userful than freeze column

You’re welcome !