Custom Forms – How add a lookup field
-
I needed to place a lookup field on a custom form, and want to show the lookup dialog window as well. is this possible? 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> Account: <input class="form-control" name="account" > </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 a lookup field’ is closed to new replies.