Custom Forms – How add notes/annotation
-
I needed to add a file uploader in a custom form, and want to save the file in notes (annotation) entity in CRM. any example please.
{% form entity="contact" mode="create" %} <form> <div class="form-group"> <label> First Name: <input class="form-control" name="firstname"> </label> </div> <div class="form-group"> <label> Last Name: <input class="form-control" name="lastname"> </label> </div> <div class="form-group"> <label> Upload a file: <input type="file" class="form-control" name="file1" > </label> </div> <div class="form-group"> <button type="submit" class="btn btn-primary">Send</button> </div> </form> {% endform %}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Custom Forms – How add notes/annotation’ is closed to new replies.