Is there a Java Script available to bring up an error message if a respondent enters a negative number on a side-by-side table?
This following script works to set the number range, but it allows respondents to pass on to the next question even if they enter a negative number:
jQuery("#"+this.questionId+" .InputText").attr({'type':'number','min':'0', 'max':'5000'});
Is there a way around to enforce minimum number entry in a side by side table without using custom validation?
