Alexander Chernyshev

Results 93 comments of Alexander Chernyshev

Yes, looks the same to me, esp considering max option was already implemented.

Btw, a good screencast from @peinan in #2289. Duplicating here not to loose that: ![](https://user-images.githubusercontent.com/5601012/97546108-50f50a80-1a0f-11eb-8203-8e3d9ce6f195.gif) I really like how `create` is done there as one of hints - that way...

I have the same problem it looks. My use case - I have a collection of dataclasses. A select_box on top to pick one - a form is displayed for...

@jrieke thank you for update. Blog post and main article are quite short and not detailed enough. Could you clarify a few points?: * which data types are supported? Enums?...

Thank you, @LukasMasuch, for a detailed answer. I'm really looking forward to the upcoming changes. This is cool. For enums I'm interested in things like: ``` python class Supportability(IntEnum): NotSet...

+1. Would be great to have a clickable toolbar button to toggle mode. Maybe also an extension (revamp) in settings - **Manual** / Automatic / Follow the system, with change...

> We will release row & column selections for `st.dataframe` in the `1.35` release. Single-row selection can be activated like this: > > ```python > selection = st.dataframe(df, on_select="rerun", selection_mode="single-row")...

Yep, I use similar thing, but through `key=f"some_fixed_key_{counter}"` and updating counter. Will try with index only. Do you think it might be possible to do this similarly to streamlit native...

Full code in case you'll want to look into my part: ``` python from collections.abc import Callable from dataclasses import _MISSING_TYPE, MISSING from functools import partial from typing import Any,...