- Posts: 15
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Where do the texts come from?I don't know how to put the text fields of the columns
{Q2c_Y001_X01='1234567'} {Q2c_Y001_X02='1'} {Q2c_Y001_X03='José Ramón Mercedes S.A.'} {Q2c_Y002_X01='222222'} {Q2c_Y002_X02='3'} {Q2c_Y002_X03='INTEGRAL'} {Q2c_Y003_X01='98765'} ...
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('input[ name="{SGQ}Y001_X01"]').prop('readonly', true).css('text-align', 'right'); $('input[ name="{SGQ}Y001_X02"]').prop('readonly', true).css('text-align', 'center'); $('input[ name="{SGQ}Y001_X03"]').prop('readonly', true).css('text-align', 'left'); $('input[ name="{SGQ}Y002_X01"]').prop('readonly', true).css('text-align', 'right'); $('input[ name="{SGQ}Y002_X02"]').prop('readonly', true).css('text-align', 'center'); $('input[ name="{SGQ}Y002_X03"]').prop('readonly', true).css('text-align', 'left'); $('input[ name="{SGQ}Y003_X01"]').prop('readonly', true).css('text-align', 'right'); $('input[ name="{SGQ}Y003_X02"]').prop('readonly', true).css('text-align', 'center'); $('input[ name="{SGQ}Y003_X03"]').prop('readonly', true).css('text-align', 'left'); ... }); </script>
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.