Forms¶
ModelForm renders the fields, EditFormWrapper puts a title row with buttons around it. The
keyword options both accept are listed on Keyword options; the narrative version of
this page is Components.
ModelForm
¶
Renders a Pydantic model as an editable form (fields only — no chrome). Use EditFormWrapper to add a title, description, and action buttons.
Create via factory methods: ModelForm.from_item(instance) — in-memory item ModelForm.from_json(Type, path) — JSON file, auto-saves ModelForm.from_adapter(Type, adapter, key) — any CollectionAdapter
Configuration options are accepted as keyword arguments or via the model's Meta class (kwargs take priority).
Source code in niceview/modelform.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 | |
item
property
writable
¶
item: BaseModel
The last state of the edited item that validated as a whole — the state save() would
persist. While any validation error is present the item keeps its previous values; the
values currently in the widgets are available as draft.
The object identity is stable across edits (the form writes fields in place), so NiceGUI bindings such as bind_text_from(form.item, 'name') keep working.
draft
property
¶
draft: BaseModel
The current widget values as a model instance — including values that fail validation
and are therefore not in item yet. A copy: mutating it does not affect the form.
adapter_bound
property
¶
adapter_bound: bool
True if the form is bound to a data adapter (save/refresh are available).
has_validation_errors
property
¶
has_validation_errors: bool
True if any field-level or model-level validation errors are present.
validation_errors
property
¶
Field-level validation errors as {field_name: error_message}. Empty dict when valid.
nonfield_validation_errors
property
¶
Model-level (cross-field) validation errors. Empty list when valid.
from_item
classmethod
¶
from_item(
item: BaseModel,
/,
**kwargs: Unpack[_ModelFormOptionInputs],
) -> Self
from_item(
item_type_or_item: type[BaseModel] | BaseModel,
item: BaseModel | None = None,
/,
**kwargs: Unpack[_ModelFormOptionInputs],
) -> Self
Create a ModelForm editing an in-memory item (no persistence).
The form modifies the item in-place; form.item returns the same object. External changes to the item's attributes are not reflected in the widgets automatically — assign form.item = updated_item to push new values to the UI.
Two call forms: from_item(instance) — item_type inferred from instance from_item(Type, instance) — explicit type (e.g. for subclasses)
Source code in niceview/modelform.py
from_adapter
classmethod
¶
from_adapter(
item_type: type[BaseModel],
adapter: CollectionAdapter | ItemAdapter,
key: str | None = None,
**kwargs: Unpack[_ModelFormOptionInputs],
) -> Self
Create a ModelForm bound to an adapter.
With key: wraps CollectionAdapter + key in a BoundItem. Without key: treats adapter directly as an ItemAdapter (e.g. JsonAdapter).
Source code in niceview/modelform.py
from_json
classmethod
¶
from_json(
item_type: type[BaseModel],
json_path: Path,
*,
create_if_not_exist: bool = True,
lock_field: str | None = None,
created_field: str | None = None,
**kwargs: Unpack[_ModelFormOptionInputs],
) -> Self
Create a ModelForm bound to a single-item JSON file. The file is created with default values if it does not exist. Calls save() to persist changes; calls refresh() to re-read from disk.
Source code in niceview/modelform.py
load
¶
load(adapter: ItemAdapter) -> Self
load(adapter: CollectionAdapter, key: str) -> Self
load(
adapter: ItemAdapter | CollectionAdapter,
key: str | None = None,
) -> Self
Bind the form to an adapter and load the item.
Two call forms: load(item_adapter) — any ItemAdapter (e.g. BoundItem, JsonAdapter) load(collection, key) — convenience: wraps in BoundItem internally
Use this for master-detail navigation (switching the displayed item at runtime).
Source code in niceview/modelform.py
refresh
¶
refresh(notify: bool = True) -> None
Reload the item from the adapter, discarding any unsaved edits.
notify=False suppresses the ui.notify popup (e.g. for programmatic refreshes).
Source code in niceview/modelform.py
save
¶
save(notify: bool = True) -> None
Persist the current item to the adapter. No-op if validation errors are present.
notify=False suppresses all ui.notify popups (success and error); errors are still logged and reflected in the form's validation state.
Source code in niceview/modelform.py
w
¶
Return the rendered widget for a field, with optional type narrowing.
form.w('name') # → ui.element (or ModelGrid / EditGridWrapper / # CheckboxGroup for editgrid / checkbox_group fields) form.w('name', ui.input) # → ui.input (typed; raises TypeError if mismatch) form.w('perms', CheckboxGroup) # → CheckboxGroup form.w('@test') # → ui.button (an action, written as in the layout)
Raises KeyError if the field has no widget (e.g. not yet rendered or excluded). Raises TypeError if the widget exists but is not an instance of widget_type.
Source code in niceview/modelform.py
with_repositories
¶
Provide adapters for modelselect fields (dropdowns over a CollectionAdapter).
Keys are either a field name (preferred — two fields can reference the same model
through different collections, and a scalar key-select field is resolved by its name) or,
for the SQLModel-relationship style, the related model class. Values are the
CollectionAdapters. When a field-name-keyed adapter is given, the field's item_type is
inferred from the adapter if not set. Additive: repeated calls merge (a later entry
overrides an earlier one for the same key), so a wrapper's registrations combine with the
form's own rather than replacing them. Returns self for chaining.
Source code in niceview/modelform.py
on_change
¶
on_change(
callback: Handler[FieldChangeEventArguments],
) -> Self
Add a callback to be invoked when the form values change and the new values are successfully validated.
Source code in niceview/modelform.py
render_field
¶
render_field(
field_name: str, **kwargs: Unpack[_FieldInfoInputs]
) -> Any
Render a single named field in the current NiceGUI context.
Returns the created widget so callers can style it immediately: form.render_field('name').classes('w-full')
Optional kwargs override FieldInfo attributes for this render only: form.render_field('name', label='Short name') form.render_field('is_active', label='') # suppress label
Unlike render(), this does not reset existing widgets — call it multiple times inside any layout structure to position fields individually. The non-field error label is not rendered; call render_nonfield_errors() separately to place it wherever needed.
Raises ValueError for unknown or hidden fields.
Source code in niceview/modelform.py
render_action
¶
render_action(name: str) -> button
Render one of the form's actions in the current NiceGUI context, for a layout built by hand out of render_field() calls — render() places the actions the layout names itself.
Returns the created button, which is also kept in action_buttons and reachable as
form.w('@name').
Source code in niceview/modelform.py
render_nonfield_errors
¶
Render the non-field (model-level) validation error label in the current NiceGUI context.
Validation runs model_validate() over the whole model, so an error with no widget to sit under — a cross-field @model_validator, or a field that is excluded or hidden — surfaces here rather than below a field.
Returns the created ui.label so callers can style it: form.render_nonfield_errors().classes('q-mt-sm')
Call this separately when using render_field() to control its placement. render() calls this automatically at the end.
Source code in niceview/modelform.py
render
¶
render() -> Self
Render all non-hidden fields followed by the non-field error label.
Fields are arranged according to the form's layout (from layout=, from the selected
Meta.profiles entry, or simply one below the other), together with the actions the
layout names as '@name'. Use render_field(), render_action() and render_nonfield_errors()
instead when a layout the notation cannot express is needed.
Source code in niceview/modelform.py
FormAction
dataclass
¶
A button in a form that is not a field: 'Test connection' next to the host, 'Generate' next
to the password. Declared in a table and placed by name — '@test' in the layout, or
chrome_actions= on a wrapper for its title row.
The name is the key of that table; everything the name cannot carry lives here, the callback above all. Label and tooltip take a callable as well, so they can follow the client's language like every other text niceview renders.
Source code in niceview/modelform.py
label
class-attribute
instance-attribute
¶
label: TextValue = ''
The button's text. '' makes it an icon-only button, so it needs an icon then.
on_click
class-attribute
instance-attribute
¶
on_click: (
Handler[FormActionEventArguments]
| Handler[GridActionEventArguments]
| Handler[DrillDownActionEventArguments]
| Handler[DrillDownListActionEventArguments]
| None
) = None
Event arguments of where the button sits, sync or async: FormActionEventArguments (a form), GridActionEventArguments (a grid selection), DrillDownActionEventArguments (detail_actions), or DrillDownListActionEventArguments (list_actions, no key/item).
icon
class-attribute
instance-attribute
¶
icon: str = ''
A Material icon name. Empty renders no icon.
tooltip
class-attribute
instance-attribute
¶
tooltip: TextValue = ''
Shown on hover, unless the chrome style turns tooltips off.
props
class-attribute
instance-attribute
¶
props: str = ''
Quasar props, merged on top of the place and shape layers of the chrome style.
FormActionEventArguments
dataclass
¶
Bases: UiEventArguments
What an action's on_click receives. form.item and form.draft are the point of it.
Source code in niceview/modelform.py
render_action_button
¶
render_action_button(
action: FormAction,
style: ChromeStyle,
place: Place,
classes: str | None,
on_click: Callable[..., Any],
) -> button
Build one action button in the current NiceGUI context — the same button wherever an action
sits, so a form's '@name' and a wrapper's chrome_actions / list_actions / detail_actions
cannot drift apart.
It goes through the same chrome layers as a Save or a Delete — the props of its place and the shape its label asks for — minus the role layer: the roles are niceview's closed vocabulary, and an application's own action is not one of them, so it styles itself.
What stays with the caller is the click (each place sends its own event arguments) and, where
there is a form to ask, requires_valid.
Source code in niceview/modelform.py
FieldChangeEventArguments
dataclass
¶
Bases: UiEventArguments
What ModelForm's on_change receives when a field's value changes.
Source code in niceview/modelform.py
EditFormWrapper
¶
Chrome wrapper for ModelForm: renders title, description, and action buttons (save, refresh) above the form fields.
Title semantics: a form edits a single item, so there is no auto-generated title —
omitted, None or '' all show no title; any other string is used verbatim. title defaults
from the singular Meta.title (the collection wrappers use Meta.title_plural instead),
description from Meta.description; both are overridden by these kwargs.
Intelligent button presets based on the factory method used: - from_item(): no buttons by default (in-memory, no adapter) - from_json(): save + refresh shown by default (adapter exists) - from_adapter(): save + refresh shown by default (adapter exists) Autosave suppresses the save button regardless.
chrome_actions adds the application's own buttons to that row — the same FormAction the
form places between its fields, here left of Refresh and Save, so niceview's own buttons keep
the right edge they always have.
After render(), the NiceGUI elements are exposed for further styling: wrapper.title → ui.label | None wrapper.save_button → ui.button | None wrapper.refresh_button → ui.button | None wrapper.action_buttons → dict[str, ui.button]
Source code in niceview/editwrapper.py
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 | |
from_item
classmethod
¶
from_item(
item_type_or_item: type[BaseModel] | BaseModel,
item: BaseModel | None = None,
/,
**kwargs: Unpack[_EditFormWrapperFactoryInputs],
) -> Self
Create an EditFormWrapper backed by an in-memory item. Call render() (fluent: from_item(...).render()) to draw it.
Source code in niceview/editwrapper.py
from_json
classmethod
¶
from_json(
item_type: type[BaseModel],
json_path: Path,
*,
create_if_not_exist: bool = True,
lock_field: str | None = None,
created_field: str | None = None,
**kwargs: Unpack[_EditFormWrapperFactoryInputs],
) -> Self
Create an EditFormWrapper backed by a JSON file with Save and Refresh buttons. Call render() to draw it.
Source code in niceview/editwrapper.py
from_adapter
classmethod
¶
from_adapter(
item_type: type[BaseModel],
adapter: CollectionAdapter | ItemAdapter,
key: str | None = None,
**kwargs: Unpack[_EditFormWrapperFactoryInputs],
) -> Self
Create an EditFormWrapper backed by an adapter with Save and Refresh buttons. Call render() to draw it.
With key: wraps CollectionAdapter + key in a BoundItem. Without key: treats adapter directly as an ItemAdapter (e.g. JsonAdapter).
Source code in niceview/editwrapper.py
with_repositories
¶
Delegate to the inner ModelForm (which merges rather than replaces).
on_change
¶
on_change(
callback: Handler[FieldChangeEventArguments],
) -> Self
load
¶
load(
adapter: ItemAdapter | CollectionAdapter,
key: str | None = None,
) -> Self
Load a specific item (master-detail navigation). Delegates to ModelForm.load().
Two call forms: load(item_adapter) — any ItemAdapter (BoundItem, JsonAdapter, …) load(collection, key) — convenience: wraps in BoundItem internally
Source code in niceview/editwrapper.py
render
¶
render() -> Self
Render title, description, action buttons, and the form into the current NiceGUI context.