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

Editing Public Statistics - by: Joffm

$
0
0
Hi, edo,

please do not crosspost.

You asked it half an hour ago in the other section.

Joffm

List(radio) other text width - by: mirelas

Submit Button - Open New Window - by: wizard2none

$
0
0
I'm new to this so may not understand the question.

Are you saying you need something different than what's provided by placing the results in 'End Message' (End Message under Survey Properties>text elements & settings)?

Import user with CSV ed export results of a survey on CSV - by: Joffm

$
0
0
Please, can you tell us what is your question?

Import 5000 users with CSV files (at least 3 columns: username, email, and password), collect 5000 responses to a poll, and export responses to CSV files.

No problem with LS.

Is there an Italian translation of CMS?

Which CMS? I assume CMS means "Content Management System".

Can I install CMS on a regular hosting from 20 €?

Well I pay 9€ monthly.

Maybe you are confused about CMS and LS, or...?

Joffm

Use LimeSurvey in a Single Page Application - by: LouisGac

$
0
0
1. iFrame (but think about how will look your survey on a mobile device: better to use a full page rendering)
2. Not at the moment (but with LS3 we're getting closer to it, it will probably be available on 3.5 or 4.0)

Allow multiple responses OR update responses with one token? - by: DenisChenu

$
0
0
The plugin is ready and used irl. You can try and contribute

Registration - by: DenisChenu

HowTo Filter the Columns of an Array (Numbers) - by: socius

$
0
0
Hi,

I just compared the html and css of the example on demonstration.sondages.pro/655577.html and the result on my installation.

I found a difference in the hideemptycolumn.css from the download from extensions.sondages.pro/questions-updati...column/download.html vs. the css used in demonstration.sondages.pro/655577.html.

The "missing" parts (s. code below) are missing in the former, but are contained in the new demonstration. When I add these two lines, it works exactly like the example in demonstration.sondages.pro/655577.html.
td.hideEmptyColumn-hiddencolumn,th.hideEmptyColumn-hiddencolumn{
overflow:hidden !important;
border-spacing:0 !important;
border-collapse:collapse !important;
padding:0 !important;
width: 0 !important;  /*missing*/
min-width: 0 !important; /*missing*/
}
table.hideEmptyColumn-widthhiddencolumn{
border-collapse:collapse !important;
}


Now it does exactly what it should do - thanks to @DenisChenu!
Best, G

Change font size of multiple choice subquestions - by: wizard2none

$
0
0
Yep--you are right. That fixed the problem and everything looks great.

Thanks for your help.

HowTo Filter the Columns of an Array (Numbers) - by: DenisChenu

Logo size - by: oumaimaf

$
0
0
I have added a logo to my survey by adding "<div class="container"><img id='page_logo' src='{TEMPLATEURL}/files/logoo.png' class="clearfix pull-left" /></div>" in the startpage. I would like to know how I can edit the size of my logo because it is currently taking up too much space.

Thank you !!

Logo size - by: Joffm

Workaround for N/A in slider array - by: Joffm

Which universities are using LimeSurvey? - by: Jmantysalo

$
0
0
University of Tampere in Finland uses LimeSurvey a little. Seems to be a nice system, maybe we should use this more.

Add Adsense Code LimeSurvey. - by: Vanhels

$
0
0
Its posible Add Adsense Code in Survey LimeSurvey,


Regards,

Registration - by: hafees89

$
0
0
Hi Denis,

I already active this plugin, but it still directed to send email. Mind to advice on this? Thank you.

Workaround for N/A in slider array - by: Jmantysalo

$
0
0
Thanks! It seems that the example on limesurvey_survey_716649.lss in the thread you linked is a perfect starting point. I just changed

// Insert the radios
			$(this).parent().addClass('radio').append('<span class="inserted-radio-wrapper">\
										<input id="'+thisID+'-Y" class="radio" value="Y" name="'+thisID.replace(/answer/, '')+'_radio" type="radio">\
										<label class="control-label radio-label" for="'+thisID+'-Y">Yes</label>\
									</span>\
									<span class="inserted-radio-wrapper">\
										<input id="'+thisID+'-N" class="radio" value="N" name="'+thisID.replace(/answer/, '')+'_radio" type="radio">\
										<label class="control-label radio-label" for="'+thisID+'-N">No</label>\
									</span>');
 
			// Initial radio states
			$(this).closest('td').find('input[type="radio"][value="'+thisValue+'"]').prop('checked', true);
		});
 
		// Listener on the radios
		$('.answer-item.column-2 input[type="radio"]', thisQuestion).on('click', function() {
			var thisInput = $(this).closest('td').find('input[type="text"]');
			$(this).closest('td').find('input[type="text"]').val($(this).val());
			checkconditions($(thisInput).val(), $(thisInput).attr('name'), 'text');
		});

to

// Insert the checkboxes
			$(this).parent().addClass('checkbox').append('<span class="inserted-checkbox-wrapper">\
										<input id="'+thisID+'-Y" class="checkbox" value="Y" name="'+thisID.replace(/answer/, '')+'_checkbox" type="checkbox">\
										<label class="control-label checkbox-label" for="'+thisID+'-Y">En vastaa tähän</label>\
									</span>\
');
 
			// Initial checkbox states
			$(this).closest('td').find('input[type="checkbox"][value="'+thisValue+'"]').prop('checked', false);
		});
 
		// Listener on the checkboxes
		$('.answer-item.column-2 input[type="checkbox"]', thisQuestion).on('click', function() {
			var thisInput = $(this).closest('td').find('input[type="text"]');
			$(this).closest('td').find('input[type="text"]').val($(this).val());
			checkconditions($(thisInput).val(), $(thisInput).attr('name'), 'text');
		});

and it seems to work.

To your second suggestion: The research team asking this want to mimic a paper form so closely as possible, so I try to avoid modifications. (Also, this LimeSurvey seems like a great product, so it would be nice to learn it deeply.)

Multiple short text: post-text for every subquestion - by: Jmantysalo

Registration - by: hafees89

HowTo Filter the Columns of an Array (Numbers) - by: socius

$
0
0
The downloaded hideemptycolumn.css from extensions.sondages.pro/IMG/auto/hideEmptyColumn.zip does not contain the two mentioned lines that are contained in the example that seem to make it work for me.


The css from extensions.sondages.pro/IMG/auto/hideEmptyColumn.zip :
td.hideEmptyColumn-hiddencolumn,th.hideEmptyColumn-hiddencolumn{
overflow:hidden !important;
border-spacing:0 !important;
border-collapse:collapse !important;
padding:0 !important;
}
table.hideEmptyColumn-widthhiddencolumn{
border-collapse:collapse !important;
}


vs. the css from the example on demonstration.sondages.pro/655577 (css: demonstration.sondages.pro/tmp/assets/59.../hideemptycolumn.css ):
td.hideEmptyColumn-hiddencolumn,th.hideEmptyColumn-hiddencolumn{
overflow:hidden !important;
border-spacing:0 !important;
border-collapse:collapse !important;
padding:0 !important;
width: 0 !important;
min-width: 0 !important;
}
table.hideEmptyColumn-widthhiddencolumn{
border-collapse:collapse !important;
}

Is this difference critical or should it work with the version w/o the two lines (width, min-width)?

Best, G
Viewing all 17529 articles
Browse latest View live


Latest Images

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