I have a Custom HTML button that I have been using to clear a tables values. The attached JavaScript also disables / enables 2 drop down menu's (this part still works)
$(document).ready(function() {
$('.monclearbtn').click(function(){ //wait for button click
$('table.mondayhide .singleline').val('');
$('table.mondayhide select').val('No');
$('.mondayweekdrp select').prop('disabled', false);
$('.mondaytermdrp select').prop('disabled', false);
});
$('.mondayweekdrp select').change(function() {
$('.mondayweekdrp select').prop('disabled', true);
$('.mondaytermdrp select').prop('disabled', true);
});
});
The table CSS and field CSS have not changed.
The button is configured this way...
<button type="button" class="monclearbtn">Clear table</button>
Before clicking the button...
After clicking the button (used to clear the table values)...
I'm having other table related JavaScript issues too...
Anyone else having Forms 10.3.1 issues?