You are viewing limited content. For full access, please sign in.

Question

Question

Forms Task Comment Section

asked on February 15, 2021

Is there an area where we can increase the character length in for the comment box when completing user task in Forms?

0 0

Replies

replied on February 22, 2021

The maximum length of comment for user task has been increased to 2000 since Forms 10.4.3.

2 0
replied on February 16, 2021

Personally, I opt for making my own comment fields and hiding the default one, as that gives more control over how they work and appear (I have a standard one I use on almost all of my forms that is done with a table, that includes date, user, and notes - along with Javascript that populates a note automatically when the form is submitted).

The built-in comment field is somewhat limited.  You can reduce the maximum character length of the field with some simple Javscript, like this:

$(document).ready(function () {
  $('#comments').attr('maxlength', '50');
});

But you can't use the same code to extend it beyond the default 500 characters - it'll set the attribute, and you can see it set when you inspect element on the browser - but it still limits to 500 characters.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.