problem with view mode
-
View mode in 1.5 disables most field types but not dropdown menus. (I didn’t check every possible field type.) Replacing
$(“#gform_wrapper_<?php echo $form_id;?> .gform_fields input”).not(“input[type=file]”).attr(“disabled”,”disabled”);
with
$(“#gform_<?php echo $form_id;?> :input”).attr(“disabled”, true);
seems to fix the problem.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘problem with view mode’ is closed to new replies.