Hello!

I'm working on a simple database, minimal extract looks like

create table genre (id serial primary key, genre_name varchar(128) not null);

create table shot (id serial primary key, gid int not null references genre(id), name varchar(128) not null);

Catalyst has created appropriate model.

Now I want to add new genres automatically with ComboBox. I add to .yml

  - type: ComboBox
    name: genre_name
    label: Genre
    model_config:
      resultset: Genre
    constraints:
      - Required

and when I enter name on text part of combobox, model->create yields an error

 null value in column "gid" violates not-null constraint

What should I do to make HTML::FormFu::Model::DBIC to add new genre and appropriate genre id?

Alex

_______________________________________________
HTML-FormFu mailing list
HTML-FormFu@lists.scsys.co.uk
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/html-formfu

Reply via email to