diff --git a/application/helpers/qanda_helper.php b/application/helpers/qanda_helper.php index 252d05dc43e..b7c0e2b3d1e 100644 --- a/application/helpers/qanda_helper.php +++ b/application/helpers/qanda_helper.php @@ -2682,11 +2682,21 @@ function do_list_radio($ia) // --------------------------------------------------------------- function do_listwithcomment($ia) { - global $maxoptionsize, $dropdownthreshold, $lwcdropdowns; + global $maxoptionsize, $dropdownthreshold, $lwcdropdowns, $thissurvey; $CI =& get_instance(); $dbprefix = $CI->db->dbprefix; $clang = $CI->limesurvey_lang; + if ($thissurvey['nokeyboard']=='Y') + { + vIncludeKeypad(); + $kpclass = "text-keypad"; + } + else + { + $kpclass = ""; + } + if ($ia[8] == 'Y') { $checkconditionFunction = "checkconditions"; @@ -2772,7 +2782,7 @@ function do_listwithcomment($ia)

-