From a96799d516c03c3b7fda0ae51c7ab656a946105d Mon Sep 17 00:00:00 2001 From: Armanveer Gill Date: Wed, 22 Jan 2025 00:47:58 -0500 Subject: [PATCH] Resolved the issue of jquery tabs not showing up content. --- admin/award_awards.php | 53 ++++++++++++++++++++------------ admin/fundraising_campaigns.php | 52 +++++++++++++++++++------------ admin/fundraising_setup.php | 45 +++++++++++++++++---------- admin/judges_teams_timeslots.php | 2 ++ admin/registration_list.php | 12 ++++++-- common.inc.php | 4 +-- config_editor.inc.php | 2 +- theme/new_default/sfiab.css | 4 +-- 8 files changed, 111 insertions(+), 63 deletions(-) diff --git a/admin/award_awards.php b/admin/award_awards.php index f8922e29..0adaf410 100644 --- a/admin/award_awards.php +++ b/admin/award_awards.php @@ -612,26 +612,39 @@ $(document).ready(function() { }); $("#editor_tabs").tabs({ - show: function(event, ui) { - switch(ui.panel.id) { - case 'editor_tab_awardinfo': - update_awardinfo(); - break; - case 'editor_tab_eligibility': - update_eligibility(); - break; - case 'editor_tab_prizes': - update_prizeinfo(); - break; - case 'editor_tab_feeder': - update_feeder(); - break; - } - return true; - }, - collapsible: true, - selected: -1 /* None selected */ - }); + create: function( event, ui ) { + + update_awardinfo(); + update_eligibility(); + update_prizeinfo(); + update_feeder(); + + }, + collapsible: true, + selected: -1 + }); + + // $("#editor_tabs").tabs({ + // show: function(event, ui) { + // switch(ui.panel.id) { + // case 'editor_tab_awardinfo': + // update_awardinfo(); + // break; + // case 'editor_tab_eligibility': + // update_eligibility(); + // break; + // case 'editor_tab_prizes': + // update_prizeinfo(); + // break; + // case 'editor_tab_feeder': + // update_feeder(); + // break; + // } + // return true; + // }, + // collapsible: true, + // selected: -1 /* None selected */ + // }); }); diff --git a/admin/fundraising_campaigns.php b/admin/fundraising_campaigns.php index 991fd962..a0d21ed3 100644 --- a/admin/fundraising_campaigns.php +++ b/admin/fundraising_campaigns.php @@ -600,27 +600,41 @@ function managecampaignsfinish() { } function managecampaignfinish() { - $("#campaign_tabs").tabs({ - show: function(event, ui) { - switch(ui.panel.id) { - case 'campaign_tab_overview': - update_tab_overview(); - break; - case 'campaign_tab_donations': - update_tab_donations(); - break; - case 'campaign_tab_prospects': +$("#editor_tabs").tabs({ + create: function( event, ui ) { + + update_tab_overview(); + update_tab_donations(); update_tab_prospects(); - break; - case 'campaign_tab_communications': - update_tab_communications(); - break; - } - }, - selected: 0 - }); + update_tab_communications(); + + }, + + selected: 0 + });} + +// function managecampaignfinish() { +// $("#campaign_tabs").tabs({ +// show: function(event, ui) { +// switch(ui.panel.id) { +// case 'campaign_tab_overview': +// update_tab_overview(); +// break; +// case 'campaign_tab_donations': +// update_tab_donations(); +// break; +// case 'campaign_tab_prospects': +// update_tab_prospects(); +// break; +// case 'campaign_tab_communications': +// update_tab_communications(); +// break; +// } +// }, +// selected: 0 +// });} + -} function campaigninfo_save(id) { //if we're creating we need to do the post, and get the id it returns, so we can re-open the popup window with that id diff --git a/admin/fundraising_setup.php b/admin/fundraising_setup.php index 52aa8fc4..2bb63afa 100644 --- a/admin/fundraising_setup.php +++ b/admin/fundraising_setup.php @@ -344,23 +344,34 @@ $(document).ready(function() { $("#editor_tabs").tabs({ - show: function(event, ui) { - switch(ui.panel.id) { - case 'editor_tab_levels': - update_levels(); - break; - case 'editor_tab_goals': - update_goals(); - break; - break; - case 'editor_tab_setup': - update_setup(); - break; - break; - } - }, - selected: 0 - }); + create: function( event, ui ) { + + update_levels(); + update_goals(); + update_setup(); + + }, + selected: 0 + }); + + // $("#editor_tabs").tabs({ + // show: function(event, ui) { + // switch(ui.panel.id) { + // case 'editor_tab_levels': + // update_levels(); + // break; + // case 'editor_tab_goals': + // update_goals(); + // break; + // break; + // case 'editor_tab_setup': + // update_setup(); + // break; + // break; + // } + // }, + // selected: 0 + // }); // $("#organizationinfo_fundingselectiondate").datepicker({ dateFormat: 'yy-mm-dd', showOn: 'button', buttonText: "" }); diff --git a/admin/judges_teams_timeslots.php b/admin/judges_teams_timeslots.php index a62a7452..235d0892 100644 --- a/admin/judges_teams_timeslots.php +++ b/admin/judges_teams_timeslots.php @@ -27,6 +27,8 @@ user_auth_required('committee', 'admin'); require_once('judges.inc.php'); + $action = null; + $round_str = array('timeslot' => 'Judging Timeslot', 'divisional1' => 'Divisional Round 1', 'divisional2' => 'Divisional Round 2', diff --git a/admin/registration_list.php b/admin/registration_list.php index d72d618f..69c998ea 100644 --- a/admin/registration_list.php +++ b/admin/registration_list.php @@ -312,8 +312,16 @@ $(document).ready(function() { }); - $("#editor_tabs").tabs({ + create: function( event, ui ) { + update_students(); + update_project(); + update_reg(); + }, + selected: -1 + }); + + /*$("#editor_tabs").tabs({ show: function(event, ui) { console.log('hi'); switch(ui.panel.id) { @@ -331,7 +339,7 @@ $(document).ready(function() { } }, selected: -1 - }); + });*/ $("#newproject").on("click", (function() { popup_editor(-1); diff --git a/common.inc.php b/common.inc.php index 087fe4f6..44d4d490 100644 --- a/common.inc.php +++ b/common.inc.php @@ -28,9 +28,9 @@ header("Content-Type: text/html; charset=utf8"); include_once("helper.inc.php"); //set error reporting to not show notices, for some reason some people's installation dont set this by default //so we will set it in the code instead just to make sure -#error_reporting(E_ALL); +error_reporting(E_ALL); #error_reporting( E_ALL ^ E_WARNING ); -error_reporting( E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED ); +#error_reporting( E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED ); define('REQUIREDFIELD','*'); diff --git a/config_editor.inc.php b/config_editor.inc.php index bee50f56..00417763 100644 --- a/config_editor.inc.php +++ b/config_editor.inc.php @@ -158,7 +158,7 @@ function config_editor_handle_actions($category, $year, $array_name) switch($config_vars[$k]['type']) { case 'number': - if(ereg("[0-9]+(\.[0-9]+)?", $val, $regs)) { + if(preg_match("[0-9]+(\.[0-9]+)?", $val, $regs)) { $val = $regs[0]; } else { $val = 0; diff --git a/theme/new_default/sfiab.css b/theme/new_default/sfiab.css index b283b4ba..9bbba97d 100644 --- a/theme/new_default/sfiab.css +++ b/theme/new_default/sfiab.css @@ -11,7 +11,7 @@ body padding: 0; background: #E0E0FF; background: #e0e0ff; - + overflow-x:hidden; height:100%; } @@ -23,7 +23,7 @@ input, textarea, select } table{ - overflow:scroll; + overflow-x:scroll; }