0 votes
in SoSci Survey (dt.) by s049805 (660 points)
edited by SoSci Survey

Ich möchte eine kombinierte Frage mit looppage verbinden, weil ich auf jeder Seite nur eine Frage anzeigen lassen möchte. Die Fragen sollten nicht randomisiert werden.

Bisher habe ich:

question('ZK02', 'combine_items=no', 'combine=ZK03', 'combine_items=yes');

pageCSS('
    table#ZK02_tab td.s2col3 {
        text-align: center;
    }
');

Das funktioniert, nun möchte ich jedes Item auf einer Seite darstellen (es handelt sich bei ZK02 und ZK03 jeweils um 5 stufige Likert-skalen).

Danke!

1 Answer

0 votes
by SoSci Survey (308k points)

nun möchte ich jedes Item auf einer Seite darstellen

Ergänzen Sie dafür bitte einfach das Item in Ihrem Befehl, alo z.B.

$items = getItems('ZK02', 'all');
$item = loopPage($items);
question('ZK02', [$item], 'combine_items=no', 'combine=ZK03', 'combine_items=yes');

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...