• After testing several forms plugins I finally decided to use this one for all my sites. It’s awesome! And free! I’m using it mainly for various specialized calculators which make use of calculated fields extensively.

    I have some suggestions, though:

    1. It would be nice to be able to control the visibility for a group of fields, not only for individual fields, maybe at row level would be fine.
    2. I noticed that the label tags don’t work: if you click on a label, the corresponding form element doesn’t get focus. Also, after a field with mask gets hidden and shown later due to the conditions logic, the mask doesn’t work anymore. I examined a fragment of the generated HTML:
    <div class="form-group">
    	<label for="fld_9048343" class="control-label">Height (feet)</label>
    	<div class="">
    		<input  type="text"data-inputmask="'mask': '9{*}'"  data-field="fld_9048343_1" class="form-control" id="fld_9048343_1" name="fld_9048343" value="" >
    	</div>
    </div>

    I see two issues here:

    • the LABEL FOR clause has a different ID than the INPUT ID clause: fld_9048343 versus fld_9048343_1
    • there is no space between type=”text” and data-inputmask=”‘mask’: ‘9{*}'”; maybe this leads to the mask problem

    Nevertheless, I give to the developer my highest appreciation because I really like this plugin very much! I think this will be easily fixed!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor David Cramer

    (@desertsnowman)

    Hi There,

    I’ll sort out he labels. I missed them when adding the _1 to the IDs.
    The input mask is probably not working on conditionals since the system dynamically adds or removes the field (not just hide it) so it probably isn’t rebinding it. easily sorted and I’ll fix it shortly.

    And with visibility: are you referring to the conditionals on a whole group rather than a single field? If so, it is in the works.

    Thread Starter Vladimir Unguru

    (@vladunguru)

    Hi,

    Thank you for your super-quick reply! Yes, I’m talking about conditionals on a group.

    Cool! I just can’t wait for the update.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Awesome!’ is closed to new replies.