Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

conditions on subquestion

  • zahidansari
  • zahidansari's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
12 years 3 months ago #69820 by zahidansari
Replied by zahidansari on topic conditions on subquestion
Well I thought my problem is over but its working fine when the question is not hidden. When I hide the question using advanced setting-> always hide this question. The array filter does not seems to work.

I checked the html source and it seems the question itself is not there in the html!!
The topic has been locked.
  • zahidansari
  • zahidansari's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
12 years 3 months ago - 12 years 3 months ago #69821 by zahidansari
Replied by zahidansari on topic conditions on subquestion
Use

var qHiddenID = 14257;
$('#question'+14257+'').hide();



where qHiddenID is your question id

to hide your question
Last edit: 12 years 3 months ago by zahidansari.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #69827 by tpartner
Replied by tpartner on topic conditions on subquestion
You cannot hide questions with the advanced settings if you want to use JavaScript. You must use CSS or JavaScript to hide the question.

If you use the advanced setting, the question is never rendered on the page so cannot be manipulated with JavaScript.

In my opinion this "feature" causes too much confusion and should be dropped.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • zahidansari
  • zahidansari's Avatar Topic Author
  • Offline
  • New Member
  • New Member
More
12 years 3 months ago #69828 by zahidansari
Replied by zahidansari on topic conditions on subquestion
Thanks dude....
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #69837 by DenisChenu
Replied by DenisChenu on topic conditions on subquestion

tpartner wrote: In my opinion this "feature" causes too much confusion and should be dropped.

Maybe, but:
If i want to fill the survey with url and don't want user can access this answer ?
If i want to fill the survey with Session ?
If i want to fill the survey with ajax ?


Just hide the answer item with css aren't good, because user can change it.

Maybe a "activate" or "read-only" option ? ( directly in HTML, can be removed with jquery).

Denis :)

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #69842 by tpartner
Replied by tpartner on topic conditions on subquestion
Then rename the setting so it doesn't cause so much confusion.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
12 years 3 months ago #69847 by Mazi
Replied by Mazi on topic conditions on subquestion
I vote for extending this feature or overwork it.

Question: Why don't we just use a $('#question'XYZ'').hide(); instead of not generating the source code at all as it is currently done? Wouldn't this solution cover all our needs?

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago - 12 years 3 months ago #69854 by DenisChenu
Replied by DenisChenu on topic conditions on subquestion

Mazi wrote: I vote for extending this feature or overwork it.

Question: Why don't we just use a $('#question'XYZ'').hide(); instead of not generating the source code at all as it is currently done? Wouldn't this solution cover all our needs?


Just put a style="display:none" directly in HTML :).

I think it's best to have an extra item for all question:
"Extra class : "

With an {EXTRACLASS) in template.css
Then you can have
Code:
<div id="questionXXX" class="question-wrapper list-dropdown hide">
OR
<div id="questionXXX" class="question-wrapper list-dropdown tparner-workaround">
OR
<div id="questionXXX" class="question-wrapper list-dropdown important">

etc etc ...

Istarted to work with something like this for CI, but there are some old template incompatibility to resolve, and redo the work for Yii ;).

Denis

PS:

Maybe, but:
If i want to fill the survey with url and don't want user can access this answer ?
If i want to fill the survey with Session ?
If i want to fill the survey with ajax ?


Just hide the answer item with css aren't good, because user can change it.

It's just what i think, maybe it's not important :).

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
Last edit: 12 years 3 months ago by DenisChenu.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #69860 by tpartner
Replied by tpartner on topic conditions on subquestion

I think it's best to have an extra item for all question:
"Extra class : "

Great idea. Joomla has this for all content, modules, etc. and I use it all the time. You can also add multiple classes.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #69884 by DenisChenu
Replied by DenisChenu on topic conditions on subquestion

tpartner wrote:

I think it's best to have an extra item for all question:
"Extra class : "

Great idea. Joomla has this for all content, modules, etc. and I use it all the time. You can also add multiple classes.

Ho, yes :).
Just think of removing bad caracter from this "extraclass" :).

I look on Yii more next week and send a patch start :).

Denis

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
The topic has been locked.
  • TMSWhite
  • TMSWhite's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #69890 by TMSWhite
Replied by TMSWhite on topic conditions on subquestion
Is the core issue a problem with cascading array filters? I've fixed that known bug with Expression Manager (EM) so that multiple array filters work properly on the same and different pages.

I also updated the data model in the _CI and _dev_tms (to be 1.92) branches so that we can assign different relevance equations to each subquestion. That way, you can use a array_filter (which auto-creates sub-question-level relevance equations), plus add additional question and/or sub-question-level relevance (the successor for conditions). The Internal logic portions for that work, but we don't have a GUI yet for adding sub-question-level relevance, although that would be easy - just add an extra column in addition to code and/or assessment value.
The topic has been locked.
  • DenisChenu
  • DenisChenu's Avatar
  • Away
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
12 years 3 months ago #70186 by DenisChenu
Replied by DenisChenu on topic conditions on subquestion

Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand , plugin development .
I don't answer to private message.
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose