How to use column.scroll_position

Hi,

I do not succeed to get a minimal working example to get a column panel displayed but positioned at row N.

Would be HAPPY if someone has the answer :slight_smile:

Thanks,

Nicolas

ps :
See below my current minimal example:
import panel as pn

Initialize Panel extension

pn.extension()

N = 100

Assume you have a list of panels

rows = [pn.Row(f"Panel {i}") for i in range(N)]
column = pn.Column(*rows)

Setting the scroll position to ensure the desired panel is at the top

column.auto_scroll_limit = 100
column.scroll=True
column.scroll_position = 50

Serve the app

def serve_app():
print(β€œServing the app at http://localhost:5006”)
column.show(port=5006)

if name == β€œmain”:
serve_app()