- Posts: 5
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Don't agree</br>1
1 - Don't agree
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ // Identify this question var thisQuestion = $('#question{QID}'); // Add a question class thisQuestion.addClass('custom-array'); // Column-specific classes $('table.subquestion-list tr', thisQuestion).each(function(i) { $('th, td', this).each(function(i) { $(this).addClass('column-'+i); }); }); }); </script>
<style type="text/css">.custom-array table.subquestion-list col { width: auto !important; } .custom-array table.subquestion-list thead .column-1 {width: 15%; } .custom-array table.subquestion-list thead .column-2 {width: 6%; } .custom-array table.subquestion-list thead .column-3 {width: 6%; } .custom-array table.subquestion-list thead .column-4 {width: 6%; } .custom-array table.subquestion-list thead .column-5 {width: 6%; } .custom-array table.subquestion-list thead .column-6 {width: 6%; } .custom-array table.subquestion-list thead .column-7 {width: 15%; } </style>
If not, it was useless to show them.First should I add 2 parts, both javascript and CSS?
You copy these two snippets and paste them into your question text (in source code mode).And I still don't know how to open these scripts