• Amy Farrah Fowler
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hello there,

I am working on a visual force page that it is used as a Web to Lead form. I would like to add a new comment box. I added the code below but it somehow adds a predifine text when I try to submit the form. Also , I need a big comment box ( I need to add up to 500 characters) but the one that shows it is very small.

<div class="form-group">
                            <label for="description"> Tell us what interest you and how we can help *</label>
                           
                            <input type="text" id="description" ng-model="data.description" name="description" ng-required="true" class="form-control" ng-disabled="waiting" ng-pattern="textPattern2" maxlength="500"/>
                            <span ng-class="{active:form.description.$invalid&&(form.description.$touched || showErrors)}"
                                  class="ui-state-error message">Tell us what interest you and how we can help.</span>
                        </div>
Thank you in advance.
Amy