Quantcast
Channel: Topics in Category: Can I do this with LimeSurvey? - LimeSurvey forums
Viewing all 17529 articles
Browse latest View live

Autocomplete question with multiple short text - by: TarkiB

$
0
0
Hi there,

I've used the walkthrough at manual.limesurvey.org/wiki/Workarounds:_...1_and_later_versions to set up auto completing questions. The user enters an ID in a field, and 4 other fields are automatically filled.

The way I have it set up is 5 seperate text questions. This takes up a huge amount of space - I'll be using autocomplete a lot throughout the survey. So I'd rather use a single multiple short text question.

I have attached a copy of the question that uses 5 seperate text box questions. I'm having trouble setting up the javascript to contain everything within the single multiple short text question. The multiple short text question has the code MultiQ. The five fields are: id, name, area, pname, pline. I want to be able to fill in id manually, then have the other fields autocompleted.

I've changed the javascript so that var q1 = $('MultiQ_id'), var q2 = $('MultiQ_name'), etc. Still however the fields won't autopopulate.

If anyone can provide any guidance or point out where I'm going wrong, that'd be great.

Cheers

Multiple numeric input with different suffixes - by: AdrianB

$
0
0
Sorry for the delay in responding, I became sidetracked at work.

Your reply solved the problem really nicey and it's working great now. Many thanks! :)

CSV File does not contain the correct character sets - by: ROSt52

$
0
0
@lamprinaGL
While working with export and import of surveys using TSV files I found the information about the UTF-8 encoding and tried to open the CSV file (all character sets) in an spreadsheet using UTF-8. (Spreadsheet SW: LibreOffice Calc). In the pre-view window I still see some strange, non-Japanese characters but when I imported into the spreadsheet, all characters in the spreadsheet are displayed correct.

For me it was important to ignore the strange characters in the pre-view and just import the file. Maybe this could be a hint for you.

RemoteControl2 Release Time - by: kobaltz

$
0
0
I have a Ruby on Rails session that generates a session key with Limesurvey. However, it seems like after a day or two, the Ruby on Rails service stops responding with Limesurvey. A simple service apache2 restart fixes the issue. I'm wondering if there is a maximum life of the session key. Is this the case or is there an idle time of the key where it becomes stale if not used for a duration of time?

Conditional ANSWERS (not questions) - by: msr_lance

Central participant panel: Can't add two tokens with identical email to survey - by: lovepade

$
0
0
I have created a panel for the survey needs of our organization.

Most of our surveys has a "role" and not "person" focus. 9 times out of 10, there will be a different person for each role. But not always. I need to send out surveys to different roles - and sometimes one person (email adress) can have more than one role (i.e. needs to answer more than one survey)

Example: I am doing a small data-gathering survey with 17 schools. Each school has two departements. But on one small school, person A has two roles: Administrator of department 1 and administrator of department 2.

I have a token attribute field called department. And Person A is listed twice in the central participant panel - once for each department.

How ever: Limeservice wont allow me to import both 'roles' (entries in the CPP) to the same survey (because of conflicting email adress I guess?). (But I can easily add tokens with identical email address - just not from the central participant panel).

I'd prefer not to create different surveys, so how can I allow a survey to have respondent with identical emails, imported from the central participant panel.

Thanks in advance

(ps: This is a x-post from www.limesurvey.org/en/forum/installation...mail-with-two-tokens - which was posted in the wrong category - and I can't delete it).

Last Option In Array (Numbers) (Checkboxes) Row Excludes All Others - by: mktfan

$
0
0
Hi,

I need your help with a javascript code.

I have an array question with checkboxes. I am trying to exclude all other options in a row if the user the last one. I've this article where you can find a javascript code to do it:

manual.limesurvey.org/wiki/Workarounds:_..._Excludes_All_Others

The code proposed is:
<script type="text/javascript" charset="utf-8">
 
        $(document).ready(function() {
 
                // Call the exclude function using question ID(s)
                excludeOpt (QQ);
 
                // A function to make the last option in each array row exclusive
                function excludeOpt (qID) {
 
                        // Add some classes to the checkboxes so we can manipulate them
                        $('#question'+qID+' table.question tbody td').addClass('normalOpt');
                        $('#question'+qID+' table.question tbody').each(function(i) {
                                $('td:last', this).removeClass('normalOpt').addClass('exlusiveOpt')
                        });
 
                        // A listener on the checkbox cells
                        $('#question'+qID+' table.question tbody td').click(function (event) {
 
                                // Set some vars
                                var el = $(this).parent();
                                var optLength = $('td', el).length
 
                                // Uncheck the appropriate boxes in a row
                                if ($(this).hasClass('normalOpt')) {
                                        $('td:last input[type=checkbox]', el).attr('checked', false);
                                }
                                else {
                                        $('td', el).each(function(i) {
                                                if (i < (optLength - 1)) {
                                                        $('input[type=checkbox]', this).attr('checked', false);
                                                }
                                        });
                                }
                        });
 
                        // A listener on the checkboxes
                        $('#question'+qID+' table.question tbody td input[type=checkbox]').click(function (event) {
 
                                // Set some vars
                                var el2 = $(this).parent().parent();
                                var optLength = $('td', el2).length
 
                                // Uncheck the appropriate boxes in a row
                                if ($(this).parent().hasClass('normalOpt')) {
                                        $('td:last input[type=checkbox]', el2).attr('checked', false);
                                }
                                else {
                                        $('td', el2).each(function(i) {
                                                if (i < (optLength - 1)) {
                                                        $('input[type=checkbox]', this).attr('checked', false);
                                                }
                                        });
                                }
                        });
                }
        });
</script>

I've used it, but something weird happens. Please, have a look to my survey here:

enquestas.com/sv/index.php/333559/lang-es

Code only works in the last row, but not in the 2 first one.

I am using Limesurvey V2.0

Can you help me, please?

Many thanks in advance

Regards

Víctor

inviting a group of users to take ongoing surveys, voting on topics for members - by: seancon1

$
0
0
i want to create this scenario for an "Advisory Panel" to vote on different topics.
  1. have a signup form for the Advisory Panel and ask for name, gender, age, and zipcode and continually invite members to join the "Advisory Panel"
  2. create new Advisory Panel surveys every 2 weeks
  3. invite Advisory Panel members to take the surveys.

the invitations should be open to all but the surveys will be by invite only based on those that have signed up in step 1

i am sure limesurvey can do this but i am unclear as how to set something like this up.

thank you in advance

Sean

Find 3 highest or lowest rated options in Array (Numbers) question? - by: tpartner

$
0
0
Oh, one other note - I set the Array (numbers) question to display answers in random order.

Can I send an answered survey to another people to review it ? - by: elijah

$
0
0
Hi,
I'm evaluating if LimeSurvey is suitable for our needs. We have an investigation group which needs to load a contact's DB with two email columns: the people who will answer the survey, and another with people who will review the answers given.

So what we need is, not only being able to send a link by email with a token to people who will answer, but also send a second email with a link to another people who needs to review the answers. One person will review one answered survey.

Can it be done somehow with LimeSurvey ? Is there at least an option to get a link to a particular survey's answers that could be accessed openly (and not only the general results inside the control panel) ?

Thanks a lot for your help!

List or case studies of charities or commercial Lime Survey users? - by: domz76

$
0
0
Hi, I am putting together a proposal for a charity to integrate the power of LimeSurvey with another open source WCM application like Drupal. The LS feature set looks great and I've had a go with the demo, but I'm concerned about the suitability (and we need to convince the client of this also ;) ) in the case of developing a commercial offering using LS.

I've seen the list of Universities and it looks great to have a strong educational user base, but I was wondering if anyone had any information about any other commercial / NGO / charity organisations that are also successfully using Lime Survey?

thanks

List-Type-Field (DropDown/Radio) for Registration Page - by: andersonelias

$
0
0
Hello Limesurvey Community,

I want to know if I can add a list-type field on the registration page. I know I can add custom field if I set new token attributes and check the option to show it on the registration page. But this question-type is a short text question type.
I want to add a Gender question and people have to choose between M for Male or F for female, so I can greet this person on my survey page with Mr.blabla or Mrs.blabla.
My Solution right now is to change the caption to ask people to type m or f.

Thank you.

How to validate uniqueness of a response? - by: amoswagon

$
0
0
Dear fellow limesurveys,

I have a 'UserID' parameter coming from a URL and stored in an Open Text question type (this part it working).

Now, I'd like to validate that each 'UserID' is used only once, so participants will not be able to take the survey more than once.

Can I validate the uniqueness of a value entered in an Open End?

I saw that there is a function in the Expression Manager, but I have no clue on where and how to implement it.

Thank you!

Generate attributes for the participants database from answers to a survey - by: seancon1

$
0
0
i see on manual.limesurvey.org/wiki/Central_parti...el%29_Development/nl it says "Generate attributes for the participants database from answers to a survey"

i am looking for a way to accomplish this scenario

1. create a "Welcome Survey"
2. invite users to take the survey
3. add the user to the central participants database with their answers as attributes.

if this is not possible then could i create my own form and insert the form values in to the central participants database, is there a method for creating the participant_id or possibly an API to achieve this?

this would not need to add them to a specific survey but to the participants database for future invitations to surveys.

thanks

Sean

Sending invitation while having outgoing email limit - by: urska


export data to spss - by: fransmarcelissen

$
0
0
Yes, you can make whatever selection you want.
Bye and succes
Frans

Randomize order of question itens in an array - by: jjxice46

$
0
0
You should be able to. Whenever you create the question you should be able to click the "Show advanced settings" and you should see an option labeled random question order

Array numbers with different dropdown answers - by: itay

$
0
0
Hi, I am trying to create a survey with different dropdown answers, two columns with numbers as dropdown, and the last column with "rarely or never" as options in the dropdown list.

I tried inserting the codes advised in this other forum, but unfortunately, it didn't work. I tried various combination of the question and sub-question ID but to no avail.

[url=http://http://www.limesurvey.org/en/forum/can-i-do-this-with-limesurvey/58190-array-question-with-answers-in-dropdown-boxes]http://www.limesurvey.org/en/forum/can-i-do-this-with-limesurvey/58190-array-question-with-answers-in-dropdown-boxes[/url]

Can someone help me? Would really appreciate it!

[File Attachment: h76ec977.lsq]

Row spacing in flexible array questions - by: AndyBe

$
0
0
Hey for the better understanding of my problem. I made a screenshot and a example survey.

Hope to hear from you soon ;)
With best regards, Andy

Section 508 compliance for people w. disabilities - by: dheisner

$
0
0
Evan,

Thank you so much for the outstanding response! It was extremely helpful in understanding LimeSurvey's 508 capabilities.

I greatly appreciate it!

Danny
Viewing all 17529 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>