Hello,
that's exactly what i need
I just have no idea how to get the code for the inline field into the multi column field. I have no bugs or anything else.
Code: Select all
new AppGiniFields(["last_name", "first_name"]).inline("Name");
var row_1 = dv.addLayout([6,6])
.add(1, ["-", "job_title", "employment_duration"])
.add(2, ["personnel_number", "-", "date_of_birth" , "age"])
;
var row_2 = dv.addLayout([6,6])
.add(1, ["personnel_number", "department", "-", "date_started", "termination_date", "-", "phone", "mobile", "email"])
.add(2, ["gender", "marital_status", "children", "-", "adress", , "emergency_contact"])
;
var row_3 = dv.addLayout([12])
.add(1, ["notes"])
.sizeLabels(1)
;
dv.addTab("employee-tab", "Stammdaten", "calendar")
.add(row_1);
dv.addTab("data-tab", "Detaildaten", "calendar")
.add(row_2);
dv.addTab("notes-tab", "Notizen", "calendar")
.add(row_3);
dv.getTabs().setPosition(TabPosition.Bottom);
I would like to have the inline field (name, first name) to the left of the personnel number field.
Thanks again, Kai