Hi,
I am looking to make some visual changes to my survey that don't seem to be options without custom code edits. Can anyone help me answer the questions below.
1) For conjoint survey display, the package options in tabular form tend to be narrow, requiring the respondent to scroll down the page to see the full package. Is there a way to widen the table so that I can have the whole package displayed without requiring the user to scroll?
2) For conjoint pricing feature, I would like to be able to display the price levels with a comma for thousands of pounds (e.g. 6,000.00 rather than 6000.00). How do can you edit the display to show the comma?
Thanks!
Page 1 / 1
Hi,
For point 1: Custom page level CSS will help, decrease the font size a bit for conjoint table, and increase the table width
For point 2: I am assuming you might have already thought of option to alter the source text to add comma. However in case you require adding comma dynamically then you can do that using JS/Jquery:
Example code for your reference:
var num = 6000.00
console.log(number.toLocaleString('us-US', { style: 'currency', currency: 'USD' }));
Note: This code won't directly work by copy-pasting, you will require some JS expertise for adding it.
I hope you find this helpful.
All the best for your project!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.