- Posts: 41
- Karma: 1
- Thank you received: 0
- Forum
- English support forums
- Development
- Progress Bar – Should only increase if a section is complete
Progress Bar – Should only increase if a section is complete
- garvsaxena
-
Topic Author
- Offline
- Senior Lime
-
Please Log in or Create an account to join the conversation.
The progressbar is a bit limited.
A way do modify the progress bar is to set the bar by hand with a code in questiongroup descriptions.
E.g.
<script type="text/javascript">
$(document).ready(function() {
$("#progressbar").progressbar({
value: 100
});
</script>
I haven't found a way to get the position inside the survey via a variable.
Would be nice to have position of question and amount of question answered of the actual interview.
Please add you ideas round about progressbar here:
www.limesurvey.org/en/forum/future-featu...rogress-bar-settings
Please Log in or Create an account to join the conversation.
Benoît
EM Variables => bit.ly/1TKQyNu | EM Roadmap => bit.ly/1UTrOB4
Last Releases => 2.6x.x goo.gl/ztWfIV | 2.06/2.6.x => bit.ly/1Qv44A1
Demo Surveys => goo.gl/HuR6Xe (already included in /docs/demosurveys)
Please Log in or Create an account to join the conversation.
- garvsaxena
-
Topic Author
- Offline
- Senior Lime
-
- Posts: 41
- Karma: 1
- Thank you received: 0
Please Log in or Create an account to join the conversation.
Benoît
EM Variables => bit.ly/1TKQyNu | EM Roadmap => bit.ly/1UTrOB4
Last Releases => 2.6x.x goo.gl/ztWfIV | 2.06/2.6.x => bit.ly/1Qv44A1
Demo Surveys => goo.gl/HuR6Xe (already included in /docs/demosurveys)
Please Log in or Create an account to join the conversation.
You don't motivate other people to help you, when opening a thread and don't follow the discussion. If you post completely different topics in the same thread it won't help either. It demotivates others to help you.garvsaxena wrote: Hey, I need to know that which file is responsible for inserting the survey responces into the database.
Please Log in or Create an account to join the conversation.
- garvsaxena
-
Topic Author
- Offline
- Senior Lime
-
- Posts: 41
- Karma: 1
- Thank you received: 0
Please Log in or Create an account to join the conversation.
- garvsaxena
-
Topic Author
- Offline
- Senior Lime
-
- Posts: 41
- Karma: 1
- Thank you received: 0
Can it be possible to have amount of question answered of the actual interview.
Please Log in or Create an account to join the conversation.
www.limesurvey.org/en/forum/future-featu...rogress-bar-settings
There seems to be no user which used e.g. linked surveys with Limesurvey.
Please Log in or Create an account to join the conversation.
- garvsaxena
-
Topic Author
- Offline
- Senior Lime
-
- Posts: 41
- Karma: 1
- Thank you received: 0
Formula we applied: TOTAL ANSWERED QUESTIONS / TOTAL QUESTIONS IN SURVEY
But for this please suggest me the script where the insertion query is present for the Inserting of Users responses..
Please Log in or Create an account to join the conversation.
I've posted a EM based solution to access the survey progress information using an equation or text display question type. End of the good news because I'm unable to modify the LS progress bar standard behavior.
Benoît
EM Variables => bit.ly/1TKQyNu | EM Roadmap => bit.ly/1UTrOB4
Last Releases => 2.6x.x goo.gl/ztWfIV | 2.06/2.6.x => bit.ly/1Qv44A1
Demo Surveys => goo.gl/HuR6Xe (already included in /docs/demosurveys)
Please Log in or Create an account to join the conversation.
- garvsaxena
-
Topic Author
- Offline
- Senior Lime
-
- Posts: 41
- Karma: 1
- Thank you received: 0

Gr8, Actually I am nearby to the solution, Once its worked I have uploaded the code on the forum.!!! Cheers!
Please Log in or Create an account to join the conversation.
Ben_V wrote: I'm unable to modify the LS progress bar standard behavior.
Via Javascript/Jquery:
Read current value:
var valueprogress = $("#progressbar").progressbar("option","value");
Set value:
$("#progressbar").progressbar({
value: valueprogressnew
});
Please Log in or Create an account to join the conversation.
var progress = "{EQUATION}"; won't work...
Benoît
EM Variables => bit.ly/1TKQyNu | EM Roadmap => bit.ly/1UTrOB4
Last Releases => 2.6x.x goo.gl/ztWfIV | 2.06/2.6.x => bit.ly/1Qv44A1
Demo Surveys => goo.gl/HuR6Xe (already included in /docs/demosurveys)
Please Log in or Create an account to join the conversation.
I needed a system to modify progressbar in a way that I can link different webapps between two limesurveys.
I was happy to modify the start and end values of the progressbar. But in the feature request I would like to see a dedicated settingspage for the progressbar with a few features (e.g. change position of progressbar with a click (top/bottom). Templates should offering a top and a bottom position without modifying the template. But that is not the scope of this thread.
Please Log in or Create an account to join the conversation.