Skipping a whole <group>, not just a question

Dear Sirs et Madames,
I have a few question regarding my form. I have skip logic that skips
a whole lot of questions (all grouped as one group in the tag)
and am wondering rather than injecting '... relevant = ".../xyz' at
every nodeset, is it possible to skip a whole group of questions?

Secondly, I have a few questions which require multiple responses but
on the SAME screen, for example a question "what method of family
planning do you use?" requires multiple responses (sounds like a job
for but....). However the responses should be prioritised in
order of importance, so if the respondent mentions "condom" as there
first answer that comes to mind, I should enter "01" next to condom,
if "vasectomy" is the second answer given, then I should enter "02'
next to "vasectomy" and so on. My idea was to have this as several
widgets on the same screen, allowing me to enter text next to
the corresponding labels, is this possible?

Lastly, there is a segment of the survey which loops over and over.
This segment is supposed to capture different partners in a 12 month
period, but up to a maximum of 6 partners. I have implemented it as
below, but that just goes on indefinitely :

How can I have it so that after 6 repetitions it moves on to the next
question (breaks out of the loop)?
Any help greatly appreciated,

Tumaini

I have a few question regarding my form. I have skip logic that skips
a whole lot of questions (all grouped as one group in the tag)
and am wondering rather than injecting '... relevant = ".../xyz' at
every nodeset, is it possible to skip a whole group of questions?

yes. you can make entire groups relevant.

Secondly, I have a few questions which require multiple responses but
on the SAME screen, for example a question "what method of family
planning do you use?" requires multiple responses (sounds like a job
for but....). However the responses should be prioritised in
order of importance, so if the respondent mentions "condom" as there
first answer that comes to mind, I should enter "01" next to condom,
if "vasectomy" is the second answer given, then I should enter "02'
next to "vasectomy" and so on. My idea was to have this as several
widgets on the same screen, allowing me to enter text next to
the corresponding labels, is this possible?

currently no. there is a long standing feature request at
http://code.google.com/p/opendatakit/issues/detail?id=134. one way to
get around this is to first select the family planning methods, then
for each item selected (using relevancy) ask for an importance.

Lastly, there is a segment of the survey which loops over and over.
This segment is supposed to capture different partners in a 12 month
period, but up to a maximum of 6 partners. I have implemented it as
below, but that just goes on indefinitely :

How can I have it so that after 6 repetitions it moves on to the next
question (breaks out of the loop)?

yes. see the "repeat a group n times" example in

Hi Yaw,

Do you have examples of where an entire group has a relevant
attribute? Do we declare this in the normal binding section or in the
body section as is done for repeat? I am also facing the same issue
where I need to skip dozens of sections and this would be tremendously
helpful.

Thanks in advance,

Sanjeev

··· On Nov 2, 9:57 am, Yaw Anokwa wrote: > > I have a few question regarding my form. I have skip logic that skips > > a whole lot of questions (all grouped as one group in the tag) > > and am wondering rather than injecting '... relevant = ".../xyz' at > > every nodeset, is it possible to skip a whole group of questions? > > yes. you can make entire groups relevant. > > > Secondly, I have a few questions which require multiple responses but > > on the SAME screen, for example a question "what method of family > > planning do you use?" requires multiple responses (sounds like a job > > for but....). However the responses should be prioritised in > > order of importance, so if the respondent mentions "condom" as there > > first answer that comes to mind, I should enter "01" next to condom, > > if "vasectomy" is the second answer given, then I should enter "02' > > next to "vasectomy" and so on. My idea was to have this as several > > widgets on the same screen, allowing me to enter text next to > > the corresponding labels, is this possible? > > currently no. there is a long standing feature request athttp://code.google.com/p/opendatakit/issues/detail?id=134. one way to > get around this is to first select the family planning methods, then > for each item selected (using relevancy) ask for an importance. > > > > > > > > > > > Lastly, there is a segment of the survey which loops over and over. > > This segment is supposed to capture different partners in a 12 month > > period, but up to a maximum of 6 partners. I have implemented it as > > below, but that just goes on indefinitely : > > > > > > > > > > > > > > > > > > > How can I have it so that after 6 repetitions it moves on to the next > > question (breaks out of the loop)? > > yes. see the "repeat a group n times" example inhttp://opendatakit.org/help/form-design/binding/

see http://pastie.org/2808194 for an example. we'll add this to the
form repo shortly.

first, you define a group in the instance

      <group_a>
        <question_a1/>
        <question_a2/>
      </group_a>

then, you define a relevancy bind on that group

  <bind nodeset="/data/group_a" type="string"

relevant="selected(/data/branch, 'a')"/>

then in the body, wrap your prompts with the group tag

<group ref="/data/group_a">
  <input ref="/data/group_a/question_a1">
    <label>question a1</label>
  </input>
  <input ref="/data/group_a/question_a2">
    <label>question a2</label>
  </input>
</group>
··· On Wed, Nov 2, 2011 at 20:53, Sanjeev Swamy wrote: > Hi Yaw, > > Do you have examples of where an entire group has a relevant > attribute? Do we declare this in the normal binding section or in the > body section as is done for repeat? I am also facing the same issue > where I need to skip dozens of sections and this would be tremendously > helpful. > > Thanks in advance, > > Sanjeev > > On Nov 2, 9:57 am, Yaw Anokwa wrote: >> > I have a few question regarding my form. I have skip logic that skips >> > a whole lot of questions (all grouped as one group in the tag) >> > and am wondering rather than injecting '... relevant = ".../xyz' at >> > every nodeset, is it possible to skip a whole group of questions? >> >> yes. you can make entire groups relevant. >> >> > Secondly, I have a few questions which require multiple responses but >> > on the SAME screen, for example a question "what method of family >> > planning do you use?" requires multiple responses (sounds like a job >> > for but....). However the responses should be prioritised in >> > order of importance, so if the respondent mentions "condom" as there >> > first answer that comes to mind, I should enter "01" next to condom, >> > if "vasectomy" is the second answer given, then I should enter "02' >> > next to "vasectomy" and so on. My idea was to have this as several >> > widgets on the same screen, allowing me to enter text next to >> > the corresponding labels, is this possible? >> >> currently no. there is a long standing feature request athttp://code.google.com/p/opendatakit/issues/detail?id=134. one way to >> get around this is to first select the family planning methods, then >> for each item selected (using relevancy) ask for an importance. >> >> >> >> >> >> >> >> >> >> > Lastly, there is a segment of the survey which loops over and over. >> > This segment is supposed to capture different partners in a 12 month >> > period, but up to a maximum of 6 partners. I have implemented it as >> > below, but that just goes on indefinitely : >> >> > >> > >> > >> > >> > >> > >> >> > >> >> > How can I have it so that after 6 repetitions it moves on to the next >> > question (breaks out of the loop)? >> >> yes. see the "repeat a group n times" example inhttp://opendatakit.org/help/form-design/binding/ > > -- > Post: opendatakit@googlegroups.com > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > Options: http://groups.google.com/group/opendatakit?hl=en >

Thanks Yaw,
Is it possible, however, to have more than one field on the same
page? currently each question on a questionnaire/survey has its own form,
but can I hypothetically have 2 questions on the same form?

Thanks

··· On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa wrote:

I have a few question regarding my form. I have skip logic that skips
a whole lot of questions (all grouped as one group in the tag)
and am wondering rather than injecting '... relevant = ".../xyz' at
every nodeset, is it possible to skip a whole group of questions?

yes. you can make entire groups relevant.

Secondly, I have a few questions which require multiple responses but
on the SAME screen, for example a question "what method of family
planning do you use?" requires multiple responses (sounds like a job
for but....). However the responses should be prioritised in
order of importance, so if the respondent mentions "condom" as there
first answer that comes to mind, I should enter "01" next to condom,
if "vasectomy" is the second answer given, then I should enter "02'
next to "vasectomy" and so on. My idea was to have this as several
widgets on the same screen, allowing me to enter text next to
the corresponding labels, is this possible?

currently no. there is a long standing feature request at
http://code.google.com/p/opendatakit/issues/detail?id=134. one way to
get around this is to first select the family planning methods, then
for each item selected (using relevancy) ask for an importance.

Lastly, there is a segment of the survey which loops over and over.
This segment is supposed to capture different partners in a 12 month
period, but up to a maximum of 6 partners. I have implemented it as
below, but that just goes on indefinitely :

How can I have it so that after 6 repetitions it moves on to the next
question (breaks out of the loop)?

yes. see the "repeat a group n times" example in
http://opendatakit.org/help/form-design/binding/

--
Post: opendatakit@googlegroups.com
Unsubscribe: opendatakit+unsubscribe@googlegroups.com
Options: http://groups.google.com/group/opendatakit?hl=en

yes. collect 1.1.7 supports multiple questions per screen. see
http://opendatakit.org/help/form-design/body/ for an example.

··· On Fri, Nov 4, 2011 at 12:18, Tumaini Kilimba wrote: > Thanks Yaw, > Is it possible, however, to have more than one field on the same > page? currently each question on a questionnaire/survey has its own form, > but can I hypothetically have 2 questions on the same form? > Thanks > > On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa wrote: >> >> > I have a few question regarding my form. I have skip logic that skips >> > a whole lot of questions (all grouped as one group in the tag) >> > and am wondering rather than injecting '... relevant = ".../xyz' at >> > every nodeset, is it possible to skip a whole group of questions? >> >> yes. you can make entire groups relevant. >> >> > Secondly, I have a few questions which require multiple responses but >> > on the SAME screen, for example a question "what method of family >> > planning do you use?" requires multiple responses (sounds like a job >> > for but....). However the responses should be prioritised in >> > order of importance, so if the respondent mentions "condom" as there >> > first answer that comes to mind, I should enter "01" next to condom, >> > if "vasectomy" is the second answer given, then I should enter "02' >> > next to "vasectomy" and so on. My idea was to have this as several >> > widgets on the same screen, allowing me to enter text next to >> > the corresponding labels, is this possible? >> >> currently no. there is a long standing feature request at >> http://code.google.com/p/opendatakit/issues/detail?id=134. one way to >> get around this is to first select the family planning methods, then >> for each item selected (using relevancy) ask for an importance. >> >> >> > Lastly, there is a segment of the survey which loops over and over. >> > This segment is supposed to capture different partners in a 12 month >> > period, but up to a maximum of 6 partners. I have implemented it as >> > below, but that just goes on indefinitely : >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > How can I have it so that after 6 repetitions it moves on to the next >> > question (breaks out of the loop)? >> >> yes. see the "repeat a group n times" example in >> http://opendatakit.org/help/form-design/binding/ >> >> -- >> Post: opendatakit@googlegroups.com >> Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> Options: http://groups.google.com/group/opendatakit?hl=en > > -- > Post: opendatakit@googlegroups.com > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > Options: http://groups.google.com/group/opendatakit?hl=en >

Thanks Yaw!

··· On Fri, Nov 4, 2011 at 12:21 PM, Yaw Anokwa wrote:

yes. collect 1.1.7 supports multiple questions per screen. see
http://opendatakit.org/help/form-design/body/ for an example.

On Fri, Nov 4, 2011 at 12:18, Tumaini Kilimba tkilimba@ihi.or.tz wrote:

Thanks Yaw,
Is it possible, however, to have more than one field on the same
page? currently each question on a questionnaire/survey has its own form,
but can I hypothetically have 2 questions on the same form?
Thanks

On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa yanokwa@gmail.com wrote:

I have a few question regarding my form. I have skip logic that skips
a whole lot of questions (all grouped as one group in the tag)
and am wondering rather than injecting '... relevant = ".../xyz' at
every nodeset, is it possible to skip a whole group of questions?

yes. you can make entire groups relevant.

Secondly, I have a few questions which require multiple responses but
on the SAME screen, for example a question "what method of family
planning do you use?" requires multiple responses (sounds like a job
for but....). However the responses should be prioritised in
order of importance, so if the respondent mentions "condom" as there
first answer that comes to mind, I should enter "01" next to condom,
if "vasectomy" is the second answer given, then I should enter "02'
next to "vasectomy" and so on. My idea was to have this as several
widgets on the same screen, allowing me to enter text next to
the corresponding labels, is this possible?

currently no. there is a long standing feature request at
http://code.google.com/p/opendatakit/issues/detail?id=134. one way to
get around this is to first select the family planning methods, then
for each item selected (using relevancy) ask for an importance.

Lastly, there is a segment of the survey which loops over and over.
This segment is supposed to capture different partners in a 12 month
period, but up to a maximum of 6 partners. I have implemented it as
below, but that just goes on indefinitely :

How can I have it so that after 6 repetitions it moves on to the next
question (breaks out of the loop)?

yes. see the "repeat a group n times" example in
http://opendatakit.org/help/form-design/binding/

--
Post: opendatakit@googlegroups.com
Unsubscribe: opendatakit+unsubscribe@googlegroups.com
Options: http://groups.google.com/group/opendatakit?hl=en

--
Post: opendatakit@googlegroups.com
Unsubscribe: opendatakit+unsubscribe@googlegroups.com
Options: http://groups.google.com/group/opendatakit?hl=en

--
Post: opendatakit@googlegroups.com
Unsubscribe: opendatakit+unsubscribe@googlegroups.com
Options: http://groups.google.com/group/opendatakit?hl=en

Hi Guys,

There was an issue with this method. When I uploaded the survey with
group that was skipped using this method, it didn't show the entire
set of variables within that group. It only showed the group name.

Do you know what's causing this?

Thanks,

Sanjeev

··· On Nov 4, 6:45 am, Tumaini Kilimba wrote: > Thanks Yaw! > > > > > > > > On Fri, Nov 4, 2011 at 12:21 PM, Yaw Anokwa wrote: > > yes. collect 1.1.7 supports multiple questions per screen. see > >http://opendatakit.org/help/form-design/body/for an example. > > > On Fri, Nov 4, 2011 at 12:18, Tumaini Kilimba wrote: > > > Thanks Yaw, > > > Is it possible, however, to have more than one field on the same > > > page? currently each question on a questionnaire/survey has its own form, > > > but can I hypothetically have 2 questions on the same form? > > > Thanks > > > > On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa wrote: > > > >> > I have a few question regarding my form. I have skip logic that skips > > >> > a whole lot of questions (all grouped as one group in the tag) > > >> > and am wondering rather than injecting '... relevant = ".../xyz' at > > >> > every nodeset, is it possible to skip a whole group of questions? > > > >> yes. you can make entire groups relevant. > > > >> > Secondly, I have a few questions which require multiple responses but > > >> > on the SAME screen, for example a question "what method of family > > >> > planning do you use?" requires multiple responses (sounds like a job > > >> > for but....). However the responses should be prioritised in > > >> > order of importance, so if the respondent mentions "condom" as there > > >> > first answer that comes to mind, I should enter "01" next to condom, > > >> > if "vasectomy" is the second answer given, then I should enter "02' > > >> > next to "vasectomy" and so on. My idea was to have this as several > > >> > widgets on the same screen, allowing me to enter text next to > > >> > the corresponding labels, is this possible? > > > >> currently no. there is a long standing feature request at > > >>http://code.google.com/p/opendatakit/issues/detail?id=134. one way to > > >> get around this is to first select the family planning methods, then > > >> for each item selected (using relevancy) ask for an importance. > > > >> > Lastly, there is a segment of the survey which loops over and over. > > >> > This segment is supposed to capture different partners in a 12 month > > >> > period, but up to a maximum of 6 partners. I have implemented it as > > >> > below, but that just goes on indefinitely : > > > >> > > > >> > > > >> > > > >> > > > >> > > > >> > > > > >> > > > > >> > How can I have it so that after 6 repetitions it moves on to the next > > >> > question (breaks out of the loop)? > > > >> yes. see the "repeat a group n times" example in > > >>http://opendatakit.org/help/form-design/binding/ > > > >> -- > > >> Post: opendatakit@googlegroups.com > > >> Unsubscribe: opendatakit+unsubscribe@googlegroups.com > > >> Options:http://groups.google.com/group/opendatakit?hl=en > > > > -- > > > Post: opendatakit@googlegroups.com > > > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > > > Options:http://groups.google.com/group/opendatakit?hl=en > > > -- > > Post: opendatakit@googlegroups.com > > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > > Options:http://groups.google.com/group/opendatakit?hl=en

only relevant form elements that are saved/sent when you complete a
form. if the group is not relevant, nothing from that group will be
saved/sent.

if you are using aggregate, those columns should still appear as
headings though.

··· On Thu, Nov 10, 2011 at 03:29, Sanjeev Swamy wrote: > Hi Guys, > > There was an issue with this method. When I uploaded the survey with > group that was skipped using this method, it didn't show the entire > set of variables within that group. It only showed the group name. > > Do you know what's causing this? > > Thanks, > > Sanjeev > > > On Nov 4, 6:45 am, Tumaini Kilimba wrote: >> Thanks Yaw! >> >> >> >> >> >> >> >> On Fri, Nov 4, 2011 at 12:21 PM, Yaw Anokwa wrote: >> > yes. collect 1.1.7 supports multiple questions per screen. see >> >http://opendatakit.org/help/form-design/body/for an example. >> >> > On Fri, Nov 4, 2011 at 12:18, Tumaini Kilimba wrote: >> > > Thanks Yaw, >> > > Is it possible, however, to have more than one field on the same >> > > page? currently each question on a questionnaire/survey has its own form, >> > > but can I hypothetically have 2 questions on the same form? >> > > Thanks >> >> > > On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa wrote: >> >> > >> > I have a few question regarding my form. I have skip logic that skips >> > >> > a whole lot of questions (all grouped as one group in the tag) >> > >> > and am wondering rather than injecting '... relevant = ".../xyz' at >> > >> > every nodeset, is it possible to skip a whole group of questions? >> >> > >> yes. you can make entire groups relevant. >> >> > >> > Secondly, I have a few questions which require multiple responses but >> > >> > on the SAME screen, for example a question "what method of family >> > >> > planning do you use?" requires multiple responses (sounds like a job >> > >> > for but....). However the responses should be prioritised in >> > >> > order of importance, so if the respondent mentions "condom" as there >> > >> > first answer that comes to mind, I should enter "01" next to condom, >> > >> > if "vasectomy" is the second answer given, then I should enter "02' >> > >> > next to "vasectomy" and so on. My idea was to have this as several >> > >> > widgets on the same screen, allowing me to enter text next to >> > >> > the corresponding labels, is this possible? >> >> > >> currently no. there is a long standing feature request at >> > >>http://code.google.com/p/opendatakit/issues/detail?id=134. one way to >> > >> get around this is to first select the family planning methods, then >> > >> for each item selected (using relevancy) ask for an importance. >> >> > >> > Lastly, there is a segment of the survey which loops over and over. >> > >> > This segment is supposed to capture different partners in a 12 month >> > >> > period, but up to a maximum of 6 partners. I have implemented it as >> > >> > below, but that just goes on indefinitely : >> >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> > >> >> > >> > >> >> > >> > How can I have it so that after 6 repetitions it moves on to the next >> > >> > question (breaks out of the loop)? >> >> > >> yes. see the "repeat a group n times" example in >> > >>http://opendatakit.org/help/form-design/binding/ >> >> > >> -- >> > >> Post: opendatakit@googlegroups.com >> > >> Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> > >> Options:http://groups.google.com/group/opendatakit?hl=en >> >> > > -- >> > > Post: opendatakit@googlegroups.com >> > > Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> > > Options:http://groups.google.com/group/opendatakit?hl=en >> >> > -- >> > Post: opendatakit@googlegroups.com >> > Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> > Options:http://groups.google.com/group/opendatakit?hl=en > > -- > Post: opendatakit@googlegroups.com > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > Options: http://groups.google.com/group/opendatakit?hl=en >

Hi Yaw,

When I first uploaded the form, the server created all the variables
in the 'submissions' tab and the variables for the group that was
skipped didn't show up. So even when I complete a form and a variable
is relevant within that group, it still didn't show up in the
server.

Sanjeev

··· On Nov 9, 11:35 pm, Yaw Anokwa wrote: > only relevant form elements that are saved/sent when you complete a > form. if the group is not relevant, nothing from that group will be > saved/sent. > > if you are using aggregate, those columns should still appear as > headings though. > > > > > > > > On Thu, Nov 10, 2011 at 03:29, Sanjeev Swamy wrote: > > Hi Guys, > > > There was an issue with this method. When I uploaded the survey with > > group that was skipped using this method, it didn't show the entire > > set of variables within that group. It only showed the group name. > > > Do you know what's causing this? > > > Thanks, > > > Sanjeev > > > On Nov 4, 6:45 am, Tumaini Kilimba wrote: > >> Thanks Yaw! > > >> On Fri, Nov 4, 2011 at 12:21 PM, Yaw Anokwa wrote: > >> > yes. collect 1.1.7 supports multiple questions per screen. see > >> >http://opendatakit.org/help/form-design/body/foran example. > > >> > On Fri, Nov 4, 2011 at 12:18, Tumaini Kilimba wrote: > >> > > Thanks Yaw, > >> > > Is it possible, however, to have more than one field on the same > >> > > page? currently each question on a questionnaire/survey has its own form, > >> > > but can I hypothetically have 2 questions on the same form? > >> > > Thanks > > >> > > On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa wrote: > > >> > >> > I have a few question regarding my form. I have skip logic that skips > >> > >> > a whole lot of questions (all grouped as one group in the tag) > >> > >> > and am wondering rather than injecting '... relevant = ".../xyz' at > >> > >> > every nodeset, is it possible to skip a whole group of questions? > > >> > >> yes. you can make entire groups relevant. > > >> > >> > Secondly, I have a few questions which require multiple responses but > >> > >> > on the SAME screen, for example a question "what method of family > >> > >> > planning do you use?" requires multiple responses (sounds like a job > >> > >> > for but....). However the responses should be prioritised in > >> > >> > order of importance, so if the respondent mentions "condom" as there > >> > >> > first answer that comes to mind, I should enter "01" next to condom, > >> > >> > if "vasectomy" is the second answer given, then I should enter "02' > >> > >> > next to "vasectomy" and so on. My idea was to have this as several > >> > >> > widgets on the same screen, allowing me to enter text next to > >> > >> > the corresponding labels, is this possible? > > >> > >> currently no. there is a long standing feature request at > >> > >>http://code.google.com/p/opendatakit/issues/detail?id=134. one way to > >> > >> get around this is to first select the family planning methods, then > >> > >> for each item selected (using relevancy) ask for an importance. > > >> > >> > Lastly, there is a segment of the survey which loops over and over. > >> > >> > This segment is supposed to capture different partners in a 12 month > >> > >> > period, but up to a maximum of 6 partners. I have implemented it as > >> > >> > below, but that just goes on indefinitely : > > >> > >> > > >> > >> > > >> > >> > > >> > >> > > >> > >> > > >> > >> > > > >> > >> > > > >> > >> > How can I have it so that after 6 repetitions it moves on to the next > >> > >> > question (breaks out of the loop)? > > >> > >> yes. see the "repeat a group n times" example in > >> > >>http://opendatakit.org/help/form-design/binding/ > > >> > >> -- > >> > >> Post: opendatakit@googlegroups.com > >> > >> Unsubscribe: opendatakit+unsubscribe@googlegroups.com > >> > >> Options:http://groups.google.com/group/opendatakit?hl=en > > >> > > -- > >> > > Post: opendatakit@googlegroups.com > >> > > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > >> > > Options:http://groups.google.com/group/opendatakit?hl=en > > >> > -- > >> > Post: opendatakit@googlegroups.com > >> > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > >> > Options:http://groups.google.com/group/opendatakit?hl=en > > > -- > > Post: opendatakit@googlegroups.com > > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > > Options:http://groups.google.com/group/opendatakit?hl=en

The actual form submission that will be sent to the server is saved on
your phone's SD card. The first thing to check is if the data is in
the XML. If the data is in the XML and not in the server please file a
issue with what version of the server you are using. When filing an
issue please attach a copy of the form used and a copy of the XML
submission data.

Waylon

··· On Thu, Nov 10, 2011 at 8:05 AM, Sanjeev Swamy wrote: > Hi Yaw, > > When I first uploaded the form, the server created all the variables > in the 'submissions' tab and the variables for the group that was > skipped didn't show up. So even when I complete a form and a variable > is relevant within that group, it still didn't show up in the > server. > > Sanjeev > > On Nov 9, 11:35 pm, Yaw Anokwa wrote: >> only relevant form elements that are saved/sent when you complete a >> form. if the group is not relevant, nothing from that group will be >> saved/sent. >> >> if you are using aggregate, those columns should still appear as >> headings though. >> >> >> >> >> >> >> >> On Thu, Nov 10, 2011 at 03:29, Sanjeev Swamy wrote: >> > Hi Guys, >> >> > There was an issue with this method. When I uploaded the survey with >> > group that was skipped using this method, it didn't show the entire >> > set of variables within that group. It only showed the group name. >> >> > Do you know what's causing this? >> >> > Thanks, >> >> > Sanjeev >> >> > On Nov 4, 6:45 am, Tumaini Kilimba wrote: >> >> Thanks Yaw! >> >> >> On Fri, Nov 4, 2011 at 12:21 PM, Yaw Anokwa wrote: >> >> > yes. collect 1.1.7 supports multiple questions per screen. see >> >> >http://opendatakit.org/help/form-design/body/foran example. >> >> >> > On Fri, Nov 4, 2011 at 12:18, Tumaini Kilimba wrote: >> >> > > Thanks Yaw, >> >> > > Is it possible, however, to have more than one field on the same >> >> > > page? currently each question on a questionnaire/survey has its own form, >> >> > > but can I hypothetically have 2 questions on the same form? >> >> > > Thanks >> >> >> > > On Wed, Nov 2, 2011 at 4:57 PM, Yaw Anokwa wrote: >> >> >> > >> > I have a few question regarding my form. I have skip logic that skips >> >> > >> > a whole lot of questions (all grouped as one group in the tag) >> >> > >> > and am wondering rather than injecting '... relevant = ".../xyz' at >> >> > >> > every nodeset, is it possible to skip a whole group of questions? >> >> >> > >> yes. you can make entire groups relevant. >> >> >> > >> > Secondly, I have a few questions which require multiple responses but >> >> > >> > on the SAME screen, for example a question "what method of family >> >> > >> > planning do you use?" requires multiple responses (sounds like a job >> >> > >> > for but....). However the responses should be prioritised in >> >> > >> > order of importance, so if the respondent mentions "condom" as there >> >> > >> > first answer that comes to mind, I should enter "01" next to condom, >> >> > >> > if "vasectomy" is the second answer given, then I should enter "02' >> >> > >> > next to "vasectomy" and so on. My idea was to have this as several >> >> > >> > widgets on the same screen, allowing me to enter text next to >> >> > >> > the corresponding labels, is this possible? >> >> >> > >> currently no. there is a long standing feature request at >> >> > >>http://code.google.com/p/opendatakit/issues/detail?id=134. one way to >> >> > >> get around this is to first select the family planning methods, then >> >> > >> for each item selected (using relevancy) ask for an importance. >> >> >> > >> > Lastly, there is a segment of the survey which loops over and over. >> >> > >> > This segment is supposed to capture different partners in a 12 month >> >> > >> > period, but up to a maximum of 6 partners. I have implemented it as >> >> > >> > below, but that just goes on indefinitely : >> >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> > >> > >> >> >> > >> > >> >> >> > >> > How can I have it so that after 6 repetitions it moves on to the next >> >> > >> > question (breaks out of the loop)? >> >> >> > >> yes. see the "repeat a group n times" example in >> >> > >>http://opendatakit.org/help/form-design/binding/ >> >> >> > >> -- >> >> > >> Post: opendatakit@googlegroups.com >> >> > >> Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> >> > >> Options:http://groups.google.com/group/opendatakit?hl=en >> >> >> > > -- >> >> > > Post: opendatakit@googlegroups.com >> >> > > Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> >> > > Options:http://groups.google.com/group/opendatakit?hl=en >> >> >> > -- >> >> > Post: opendatakit@googlegroups.com >> >> > Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> >> > Options:http://groups.google.com/group/opendatakit?hl=en >> >> > -- >> > Post: opendatakit@googlegroups.com >> > Unsubscribe: opendatakit+unsubscribe@googlegroups.com >> > Options:http://groups.google.com/group/opendatakit?hl=en > > -- > Post: opendatakit@googlegroups.com > Unsubscribe: opendatakit+unsubscribe@googlegroups.com > Options: http://groups.google.com/group/opendatakit?hl=en >