Many thanks!
Many thanks!
I am not quite sure why you bring up those tools in connection with my post.jelo wrote: If I look at Microsoft Forms and Google Forms and SurveyMonkey, the question is, where LimeSurvey is aiming in terms of ideal usercases in the SaaS space. Stuck in the middle? Or the golden middle? If many users of LimeSurvey would need quota, I would expect more requests here in the forum. Google Forms offer jumps to other sections.
jelo wrote:
In other words: If the submit button would be triggered via Javascript after loading the page, it would fit your requirement? BTW: What version of LimeSurvey is used?phplist wrote: and also the instruction to submit the survey immediately, without loading of the survey page with prefilled fields.
Which comes from the first time using LimeSurvey with a workaround in the old days. Hidden field with random number wasn't hidden for some browsers. Respondents entered numbers in the random number fieldtpartner wrote: I realize that you have a dislike/distrust for all workarounds
I'm aware of that. The distinction here was inside or outside of LimeSurvey. Reducing dependency with outside scripts might be a reason too.My suggestion to use the API is a server-side solution.
All in One. Welcome page disabled. No end message displayed.The bootstrap layout seems to be to spacious to be integrated into small windows.
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
// Disable everything except Fridays
$('#answer{SGQ}_datetimepicker').data('DateTimePicker').daysOfWeekDisabled([0,1,2,3,4,6]);
});
</script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
keepPos('{SGQ}',['SQ004|4']) // keepPos('{SGQ}',['code|position'])
});
</script>
limeurl = "http://YOURDOMAIN/limesurvey/index.php"
limesessionkey = "SESSIONKEY"
limesid = "SID"
limedoctype = "csv" 'xls, csv, json
limelang = "en" 'ru
limecompletionstatus = "complete" 'complete,incomplete, all
sendtext = "<methodCall><methodName>export_responses</methodName><params><param><value><string>" + limesessionkey + "</string></value></param><param><value><int>" + limesid + "</int></value></param><param><value><string>" + limedoctype + "</string></value></param><param><value><string>" + limelang + "</string></value></param><param><value><string>" + limecompletionstatus + "</string></value></param></params></methodCall>"