The LimeSurvey Fund-Raiser 2012 is complete. Thank you for donating a total of 25,000 USD!     List of donors »

Bienvenido, Invitado
Nombre de Usuario: Contraseña: Recordarme
  • Página:
  • 1

TEMA: time_limit_disable_next and navigationdelay for individual questions

time_limit_disable_next and navigationdelay for individual questions hace 2 meses 1 semana #93538

  • robstone
  • Avatar de robstone
  • DESCONECTADO
  • Fresh Lemon
  • Mensajes: 4
  • Gracias recibidas 1
  • Karma: 0
I see how navigationdelay is set for the whole survey and used in the frontend_helper:surveymover function to create the buttons,
but I see there is a question attribute called time_line_diable_next (and prev) which is used in qanda_helper:return_timer_script
but im not sure how !

what i am trying to achieve is the equivalent of navigation delay feature but with per question timeouts (or use
navigation delay if null) so there'd be choice....

1) 0
2) lime_surveys:sid:navigationdelay
3) lime_question_attributes:qid:time_line_diasble_next

is this sensible/achievable with a some easy tweaks (looks like i should amend surveymover) ?
El administrador ha desactivado la escritura pública.

time_limit_disable_next and navigationdelay for individual questions hace 2 meses 1 semana #93811

  • robstone
  • Avatar de robstone
  • DESCONECTADO
  • Fresh Lemon
  • Mensajes: 4
  • Gracias recibidas 1
  • Karma: 0
I managed to do what i anted using javascript and calling the LS navigation_countdown function
after disabling the next button, All works well. Only pain is I have to hard code the time into
each question , cant get it from LS anywhere (eg a question attribute via a {USER_DATA} keyword
or such like, but i guess these are disabled for security)
El administrador ha desactivado la escritura pública.

time_limit_disable_next and navigationdelay for individual questions hace 1 mes 1 semana #94915

  • rasheed
  • Avatar de rasheed
  • DESCONECTADO
  • Junior Lime
  • Mensajes: 32
  • Karma: 0
Could you please share the code you used for that ?

Thank you
El administrador ha desactivado la escritura pública.

time_limit_disable_next and navigationdelay for individual questions hace 1 mes 1 día #95234

  • robstone
  • Avatar de robstone
  • DESCONECTADO
  • Fresh Lemon
  • Mensajes: 4
  • Gracias recibidas 1
  • Karma: 0
sure

in the help section of the question is this code (where 10 means 10 seconds - put what you like)
<script type="text/javascript" charset="utf-8">
	$(document).ready(function() {
       /* See /uploads/templates/teds/template.js  */
       rfs_nav_delay(10); 
	});
</script>
 

the script is in the template.js uses 2 functions. we only enable the next button
when the countdown has timed out *and* an option has been selected.

comments / tweaks / tidying up / welcome

 
/*
 * The function rfs_nav_delay waits n seconds before enabling the next key 
 * 
 * uses same methods as normal LS. For including per question,
 */
 
function rfs_nav_delay(n)
{
	$(document).ready(function() {
		$('#movenextbtn').attr('disabled', 'disabled'); 
		$('#movenextbtn').attr('aria-disabled', true);
		$('#movenextbtn').button("disable");
		navigator_countdown(n); 
		//navigator_countdown(1); 
 
 
		//$('#movenextbtn').hide();
		//Show the next button when a radio is clicked
		// use rfs_click_required requires so doenst break if rfs_nav is not called.
		$(window).data('rfs_click_required',1);
		$('input.radio').click(function(){
			$(window).data('rfs_click_required', null);
			if (!$(window).data('countdown')) {
				$('#movenextbtn').attr('aria-disabled', false);
				$('#movenextbtn').button("option", "disabled", false);
			};
		});
	});
}
 
// RFS  addded the rfs_clicked state to check if a buton has been clicked.
// logic is a bit about face so that suvreys that don't set it are not affetced
function navigator_countdown_end()
{
	if (!$(window).data('rfs_click_required')) {
		navigator_countdown_btn().each(function(i, e)
		{
			e.value = $(e).data('text');
			$(e).button("option", "disabled", false);
			$(e).attr('aria-disabled','false');
		});
		$(window).data('countdown', null);
	}
}
 
Última Edición: hace 1 mes 1 día por robstone.
El administrador ha desactivado la escritura pública.
Los siguientes usuarios han agradecido: rasheed

time_limit_disable_next and navigationdelay for individual questions hace 1 mes 1 día #95247

  • rasheed
  • Avatar de rasheed
  • DESCONECTADO
  • Junior Lime
  • Mensajes: 32
  • Karma: 0
Thank you very much.

However, i see the countdown on the previous boutton as well. Is if possible to remove it from there ?

Thank you :)
El administrador ha desactivado la escritura pública.
  • Página:
  • 1
Moderadores: DenisChenu, ITEd
Tiempo de carga de la página: 0.195 segundos
Donation Image