JobeetCategory:
actAs: { Timestampable: ~ }
columns:
name: { type: string(255), notnull: true, unique: true }
test: { type: string(255), notnull: true, unique: true }
JobeetJob:
actAs: { Timestampable: ~ }
columns:
category_id: { type: integer, notnull: true }
type: { type: string(255) }
company: { type: string(255), notnull: true }
relations:
JobeetCategory: { onDelete: CASCADE, local: category_id, foreign: id, foreignAlias: JobeetJobs }
JobeetJobForm で追加しました:
$cat = new JobeetCategory();
$this->embedForm('category', $cat);
そして私はADMINを生成しました。
これで、これらのフォームからすべてのウィジェットを作成できます。これは generator.yml で変更できます。ポジションフォームあり
form:
display:
One: [category_id, type]
Two: [company, test] // test - not working
エラーウィジェットテストが存在しません。ジェネレーターで埋め込みフォームを使用するにはどうすればよいですか?
私は試します:
form:
display:
One: [category_id, type]
Two: [company, JobeetCategory[test]]
しかし、これも機能しません。