• Resolved georg03

    (@georgdem)


    Hello,

    I need to add a field for comments or notes with type textarea. So far I can add only input fields. How can I achieve this?

    Thanks
    Georg

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author roundupwp

    (@roundupwp)

    Hi Georg,

    Currently our free version offers only text fields. Our paid pro version has additional form field types including a textarea field. This may change in the future though!

    Though you could use JavaScript to change one of the text fields into a textarea field. I haven’t tried this myself but I believe it would work.

    Thanks,

    Craig

    Plugin Author roundupwp

    (@roundupwp)

    This thread has been quiet for awhile. I’ll mark it resolved but let me know if you have more questions!

    elcondorito

    (@elcondorito)

    Hello @georgdem,

    I had the same request/need. I implemented the following code :

    $input = $("#rtec_other"); //change to match the ID you're targeting
    	$textarea = $("<textarea></textarea>").attr({
    		id: $input.prop('id'),
    		name: $input.prop('name'),
    		value: $input.val()
    	});

    Hope this helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Textarea field for notes or comments’ is closed to new replies.