x
x
x
x
Only portrait mode is currently supported - please rotate your device.
...
ConfiForms (FormView) Registrations Control | ||||||
---|---|---|---|---|---|---|
| ||||||
HTML |
---|
<script> /* Makes the fields for the dates larger */ $('#i_endDate').attr('style', ''); $('#i_startDate').attr('style', ''); </script> <script> $("#saveFormButton .my-button").on("click", function(){ $('.my-button').prop('disabled', true); $("button.my-create-dialog-create-button.aui-button.aui-button-primary.save-cf-btn").click(); $("#action-errors-confiform").waitUntilExists(function () { $('.my-button').prop('disabled', false); window.scrollTo({top: 0, behavior: 'smooth'}); }); return false; }); /* $('#i_country').prop('disabled', true); $('#i_round').prop('disabled', true);*/ </script> <script> $("#i_RSVPCount").waitUntilExists(() => { $("#i_RSVPCount").val(0); }) $("#i_sequence").waitUntilExists(() => { console.log("setting sequence val to 0"); $("#i_sequence").val(0); }) </script> <script> const calendar = { 'January':'Jan', 'February':'Feb', 'March':'Mar', 'April':'Apr', 'May':'May', 'June':'Jun', 'July':'Jul', 'August':'Aug', 'September':'Sep', 'October':'Oct', 'November':'Nov', 'December':'Dec' } const formatDateLong = d => { const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; const dayNames = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; var hh = d.getHours(); var m = d.getMinutes(); var s = d.getSeconds(); var dd = "am"; var h = hh; if (h >= 12) { h = hh-12; dd = "pm"; } if (h == 0) { h = 12; } m = m<10?"0"+m:m; s = s<10?"0"+s:s; var strTime = h+":"+m+" "+dd return dayNames[d.getDay()] + ", " + monthNames[d.getMonth()] + " " + d.getDate() + " " + d.getFullYear() + ", " + strTime; } </script> |
...
OneValley