https://bugs.documentfoundation.org/show_bug.cgi?id=152687
Robert Großkopf <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from Robert Großkopf <[email protected]> --- Only had a look at the screenshot: You have connected the combo box to a field called "group_id". This group_id is an INTEGER, defined in your table. Then you try to fill it with "group_name" - defined as VARCHAR. The field itself will only show INTEGER. Seems you are looking for a list box, not a combo box. List boxes will show the group_name and save the group_id. Try a list box with this code: SELECT "group_name", "group_id" FROM "public"."user_group" Bound field in data should be default (1). So "group_id" will be saved in the table while "group_name" will be shown. -- You are receiving this mail because: You are the assignee for the bug.
