Md Mostafizur Rahman milon
unread,Aug 28, 2010, 2:39:22 AM8/28/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to diem-users
hello Diem User
plz follow my schema :-
TestQuestion:
actAs: [ Timestampable,DmSortable ]
columns:
name: { type: string(200), notnull: true}
is_active: { type: boolean, notnull: true, default: false }
AnswerOption:
actAs: [ Timestampable,DmSortable ]
columns:
test_id: { type: integer, notnull: true}
options: { type: string(255), notnull: true }
relations:
TestQuestion:
class: TestQuestion
onDelete: CASCADE
local: test_id
foreign: id
foreignAlias: AnswerOptions
now i am try to embed AnswerOption form in TestQuestion from ,but i
cant do it show error .any one can describe how its is possible .
thanks