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

emoji answers - by: okkhalid

$
0
0
Hello, I'm building a short survey, and I need all the answers as: faces - Emoji.

:( :laugh: :angry: :sick: :S

Any guidance on how to do that.

three dependent drop downs in an array text using java script - by: cstcandy

$
0
0
Hi Tony Thanks for your reply!
Yet how do I solve the issue with this alert?

emoji answers - by: LouisGac

$
0
0
you can also use the 5 point choice question type with slider layout, it will do what you want out of the box

Matrix where some subquestions got comments - by: McTell

$
0
0
Hey,

I’ve got a Matrix of different questions in LimeSurvey. Yet, some of them require the participant to specify an answer. I would like to have a "comment" text filed behind that specific questions.

The most helpful approach was this one (also check the attachment):
www.limesurvey.org/forum/can-i-do-this-w...w--my-solution#89695

As you also see the attachment I want to control on what subquestions this comment field is shown. Is this somehow possible?


Thanks for any help,
McTell

Deactivate Survey with API - by: bdrhoa

$
0
0
Could you please post an example of how to expire a survey?

emoji answers - by: okkhalid

$
0
0

fvanderstarre wrote: Hi, when editing your answer options you can use the HTML editor to select emojis. :)


Perfect, thank you so much, I have done it, but I still see the selection icons on the left, is that possible to remove it or hide it so people can only click on the picture.

Getting Assessment Results Without Message to User - by: jelo

$
0
0
Assessment scores are not saved in the results, so you need to use e.g. a hidden equation question to calculate and save the score in the results.

three dependent drop downs in an array text using java script - by: tpartner

$
0
0
That should let you know if a JavaScript error is preventing the script from running.

How to fix would depend on what the error is.

Matrix where some subquestions got comments - by: tpartner

Deactivate Survey with API - by: tpartner

$
0
0
Using JSON-RPC, I think something like this (untested):


<?php
 
	require_once 'jsonRPCClient.php';
 
	define( 'LS_BASEURL', 'http://pathTo/limeSurvey/');
	define( 'LS_USER', 'username' );
	define( 'LS_PASSWORD', 'password' );
 
	$iSurveyID = 11111;
 
	if(ctype_alnum($iSurveyID) && (strlen($iSurveyID) == 5 || strlen($iSurveyID) == 6)) { // Valid SID format
 
		// Instantiate a new RPC client
		$myJSONRPCClient = new jsonRPCClient( LS_BASEURL.'/index.php/admin/remotecontrol' );
 
		// Get a session key
		$sSessionKey= $myJSONRPCClient->get_session_key( LS_USER, LS_PASSWORD );
 
		if(is_array($sSessionKey)) { // Invalid session
			echo $sSessionKey['status'];
		}
		else if($sSessionKey) { // Valid session			
 
			// Expire survey
			$aSurveyData = array('expires'=>'2018-01-27 00:00:00');
			$newSurveyProperties = $myJSONRPCClient->set_survey_properties($sSessionKey, $iSurveyID, $aSurveyData);
		}
 
		// Release the session key
		$myJSONRPCClient->release_session_key( $sSessionKey );
	}
	else { // Invalid SID format
		die( 'Invalid format!' );
	}
 
?>

emoji answers - by: tpartner

$
0
0
Give the question a CSS class "with-emoji" and add something like this to the end of template.css:

.with-emoji .radio label::before,
.with-emoji .radio label::after {
	display: none;
}

About E-mail function in limesurvey. - by: tomtom

$
0
0
Oh! It was my previous question problem. Thank you holch!!!

[Q] How to build Javascript array from survey answers - by: w14a

$
0
0
Thank you very much for reaction and kind response. I believe, my errors are connected with complexity of the initial task that is about to compare dates against some constants and counting them also, sorting and different formats when compared... Simply, I did not have fast scripting skill, so your help is appreciate very much ... I did not describe the whole intention initially. The Idea was to get several evaluation angles from single answer to the single question.
My scenario:
The dates in myarray[] always mean several things, so I need to interpret them by some logic: 1) Dates in a past incl. today (all should be first compared against Today, of course) should total count as numberofpastdates, 2) future dates should be total count as numberoffuturedates, plus, 3) the latest future date should be assigned to the new variable, 4) if no future dates are provided, the var x should get value false, 5) Whole empty array cells (date is not provided by respondent) should be total count as nodatesprovidednumber and, finally, 6) the particular dates, say equal to YYYY-MM-DD, should be total count as particulardatesnumber.
I have used while() and case(true) statements and expressions, but finally messed up with the script and lost in space.:( Depending on my next 3 days success, our ~3000 respondents will or will not get valuable statistical graph on their last page; btw, thanks for google graph libraries... Here is not a profitable project, only my afterhours intention to have the survey better shaped than standard "acceptable" level.
Thanks again for your kind support and invaluable ideas.

Drag and drop files for "file upload" question type? - by: alexross3

$
0
0
Hi all,

I am piloting a survey right now that requires participants to audio-record their answer and submit for a file upload question type. This involves recording the audio, downloading the audio file, and then uploading the file in order to submit an answer for the question.

The initial feedback I am getting from users is that the process of having to manually search for the audio file in their computer in order to upload it is a bit cumbersome/confusing.

Is there a way to modify the file upload question type so that users have the option to simply click and drag the audio-file they have just downloaded, in order to submit?

Thanks.

Drag and drop files for "file upload" question type? - by: holch

$
0
0
I think the bigger issue that they have to download something from the survey and then upload it again in the first place.

Is there no way you can make them record the audio file and save it with their savedid or something on your server? Then later you could bring those two things together and the user experience is probably much better than with the current approach.

About E-mail function in limesurvey. - by: holch

$
0
0
Hmmm, don't really understand your last comment. Does it work now?

About E-mail function in limesurvey. - by: tomtom

$
0
0
Tested a whole day, not work finally....


I want to make an assessment will automatically direct higher marks (>10) student to Class A message, and Class A teacher will receive their score and name information. It seems work.

But the assessment cannot show Class B message if student get low marks (<8)

Please help, thank you so much.

emoji answers - by: okkhalid

$
0
0

tpartner wrote: Give the question a CSS class "with-emoji" and add something like this to the end of template.css:

.with-emoji .radio label::before,
.with-emoji .radio label::after {
	display: none;
}

Thank tpartner,

It worked, but I have small issue, now when a user select any of the 3 emoji it does not show what is the selection, do know how I can add 2 images one of them overly that show one the user select it.

Before when a user select any image the radio circle shows black dot, so it shows at least which selection. but now when click on any of the 3 images nothing confirm that what user select before go next.

Please guide. thank you agian

About E-mail function in limesurvey. - by: tomtom

$
0
0
Sorry, test again and again.. seems working, don't know why...

No admin email notifications - by: reno123

$
0
0
Hi,

I know that this subject looks simply, but I ensure all that before put this post I spend some time for searching solution...

I use ver. 3.0.4+180116
I manage to configure email sending (I recive email after create new user)

BUT

I do not recive emails after survey is submit.

Does this feature is enabled by default (I do not see any setting about this) ?
Viewing all 17529 articles
Browse latest View live