Idea sandbox Idea sandbox
Popular ideas Popular ideas
Ideas in development Ideas in development
Implemented ideas Implemented ideas

Popular ideas Here are this month's most popular ideas about LimeSurvey.

Copy Groups  
Written by don the 1 Feb 12 at 14:49. Global category: Logic & Conditions. New
We should copy a whole group not just a question, then looping this group depending on a question.

For ex: how many pets do you have: 3

For each pet, you should have the possibility to answer the same question group.
0
votes
up equal down
Solution #1: Copy button for groups
Written by don the 1 Feb 12 at 14:49.
There should be a copy button for whole groups.

The conditions on a group is a request, which is already mentioned in another idea.

Add a comment or propose a solution >>

Final or thanks message in closed surveys  
Written by filhocf the 2 Feb 12 at 14:58. Global category: Logic & Conditions. New
When we need to close a survey, can expire or close it.

In both cases, to show a message explain the end of survey and saying some thing like a "thanks by interesting".

0
votes
up equal down
Solution #1: Add more a field
Written by filhocf the 2 Feb 12 at 14:58.
In the "Edit text elements", to add more one field for final message, that will filled with a thanks text or explanation about the closing of survey.

Is more a consideration's question that a tecnical's question.

Add a comment or propose a solution >>

Use Question Validation Equation only if person navigates past the question  
Written by vierundzwanzig the 27 Jan 12 at 10:12. Global category: Logic & Conditions. New
It would be nice if the Question Validation Equation is only used when the user navigates past the question with the Question Validation Equation.

If you, for example, use a Question Validation Equation in the third question of your survey and the participant answers the first question the third question will be shown in red if you don't check whether it is null or not.

The situation is that the person didn't even try to answer the question because he/she is at a question before. But I think it would make sense to use/check the Question Validation Equation only if the person is working with the question.
0
votes
up equal down
Solution #1: Check validation after the person "leaves" the question
Written by vierundzwanzig the 27 Jan 12 at 10:12.
An idea would be to check the validation after the persons "leaves" the question. For example with events like focusout, blur, change, click or whatever would be suitable to check whether the persons finished answering a question.

Add a comment or propose a solution >>

I don't think a user should have to manually update the config-defaults.php fil  
Written by nickheycats the 8 Feb 12 at 00:33. Global category: Logic & Conditions. New
To set advanced setup configuration settings a user has to manually update the config-defaults.php file. When an the survey engine is upgraded, extra changes need to take place in the config-dfeaults.php file.

Sorry, this request does not fit well with any of the Global categories.
0
votes
up equal down
Solution #1: Allow setting advanced setup variables in the config.php.
Written by nickheycats the 8 Feb 12 at 00:33.
For instance, if someone needs to override the $publicurl value, it has to be done in the config-defaults.php. When a user creates their config.php, they might have all the information they need to set the $publicurl, yet they cannot set the value in the config.php.

By updating the config-defaults.php to first check if the variable has been set, we can keep the user's version of the variable and set a default if needed.

$publicurl = isset($publicurl) ? $publicurl : "$rooturl";

Of course there are several ways to do this same logic.

With the code above, if a user were to set a value for $publicurl in their config.php, it would not be overwritten by the config-defaults.php. If the user does not set the value manually, the value will still be set to the default value.

Add a comment or propose a solution >>