Compare commits

...

2 Commits

Author SHA1 Message Date
arman
d71d3818ad Resolve issue with judge registration 2025-02-08 01:38:28 +00:00
arman
d32406db94 Fix tabs not loading correctly 2025-02-07 21:48:14 +00:00
2 changed files with 9 additions and 6 deletions

View File

@ -967,7 +967,6 @@ function getDonationString($id)
update_contactsinfo();
update_organizationinfo();
update_sponsorshipinfo();
update_activityinfo();
},
activate: function(event, ui) {
@ -976,6 +975,7 @@ function getDonationString($id)
update_contactsinfo();
update_activityinfo();
},
collapsible: true,
selected: -1
});
@ -999,7 +999,7 @@ function getDonationString($id)
$("#searchresults").hide();
if (id == -1) {
$('#editor_tabs').tabs('option', 'selected', 0);
$('#editor_tabs').tabs('option', 'active', 0);
$('#editor_tabs').tabs('option', 'disabled', [1, 2, 3]);
$("#organizationinfo_organization").val("");
@ -1022,7 +1022,7 @@ function getDonationString($id)
$("[name=donortype]").attr('checked', '');
} else {
$('#editor_tabs').tabs('option', 'selected', 0);
$('#editor_tabs').tabs('option', 'active', 0);
$('#editor_tabs').tabs('option', 'collapsible', true);
$('#editor_tabs').tabs('option', 'disabled', []);
}

View File

@ -86,6 +86,7 @@ if ($eid != $_SESSION['users_id']) {
$type = $_SESSION['users_type'];
$u = user_load($eid);
/* Load the fields the user can edit, and theones that are required */
$fields = array();
$required = array();
@ -185,6 +186,7 @@ if (get_value_from_array($_SESSION, 'embed') == true) {
$newstatus = user_personal_info_status($u);
?>
<script type="text/javascript">
function personal_save()
{
$("#debug").load("<?= $config['SFIABDIRECTORY'] ?>/user_personal.php?action=save", $("#personal_form").serializeArray());
@ -389,7 +391,8 @@ if (in_array('committee', $u['types'])) {
echo '</table>';
}
echo '<input type="submit" onclick="personal_save()" value="' . i18n('Save Personal Information') . "\" />\n";
echo '<input type="submit" onclick="personal_save();return false;" value="' . i18n('Save Personal Information') . "\" />\n";
echo '</form>';
echo '<br />';