maxfordham / ipyautoui

create ipywidgets user input form pydantic model or jsonschema
https://maxfordham.github.io/ipyautoui/
40 stars 4 forks source link

🐛 layout issue when nested grid and nullable row in same form #167

Closed jgunstone closed 11 months ago

jgunstone commented 1 year ago

image

class NestedEditableGrid(BaseModel):
    title: str = "My editable Dataframe"
    reference: ty.Optional[str] = None
    grid: ty.List[DataFrameCols] = Field(
        default=DATAGRID_TEST_VALUE,
        format="DataFrame",
        global_decimal_places=2)
jgunstone commented 11 months ago

resolved in this PR https://github.com/maxfordham/ipyautoui/pull/199