Freezing feature in Mendix.

0
Hello everyone, Can I know if there is any feature in Mendix, which allows us to freeze a row (either first or second or third) and allows us to see the remaining rows upon scrolling?? Thanks in advance.
asked
1 answers
0

You can make this with Mendix by adding an attribute (e.g. a boolean on the entity shown in the table) if a user clicks a button/checkbox to freeze the row, the boolean is set to true. With conditional classes you then add a CSS class that makes sure the row is frozen (I believe position:sticky would do the job).

answered