From: Alan Pippin Date: Tue, 26 Oct 2010 23:22:56 +0000 (-0600) Subject: Added ability to utilize jquery to automatically select families and X-Git-Tag: release_1_1_0^2~2^2~3 X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=commitdiff_plain;h=631c779c84e658215aedf22693af33a1cb4f30a1;p=eq%2F.git Added ability to utilize jquery to automatically select families and HT companions automatically once a companionship is selected. --- diff --git a/inc/class.tc.inc.php b/inc/class.tc.inc.php index 9a33637..2b34526 100644 --- a/inc/class.tc.inc.php +++ b/inc/class.tc.inc.php @@ -401,6 +401,7 @@ class tc function ht_sandbox() { $this->t->set_file(array('ht_sandbox_t' => 'ht_sandbox.tpl')); + $this->t->set_block('ht_sandbox_t','switch_case_list','sc_list'); $this->t->set_block('ht_sandbox_t','comp_list','c_list'); $this->t->set_block('ht_sandbox_t','district_list','d_list'); $this->t->set_block('ht_sandbox_t','unassigned_ht_list','uht_list'); @@ -651,8 +652,16 @@ class tc $sql = "SELECT DISTINCT companionship FROM tc_companionship_sandbox WHERE district=$districts[$d] ORDER BY companionship ASC"; $this->db->query($sql,__LINE__,__FILE__); while ($this->db->next_record()) { + $switch_case_list = ""; $sandbox_table_data .= ""; $companionship = $this->db->f('companionship'); + + $switch_case_list .= "case '". $companionship ."':\n"; + $switch_case_list .= " $(\"#district option:selected\").removeAttr(\"selected\");\n"; + $switch_case_list .= " $(\"#assignedHT option:selected\").removeAttr(\"selected\");\n"; + $switch_case_list .= " $(\"#assignedFamilies option:selected\").removeAttr(\"selected\");\n"; + $switch_case_list .= " $(\"#district option[value='".$districts[$d]."']\").attr(\"selected\",true);\n"; + # get names of companions in this companionship $sql = "SELECT * FROM tc_companion_sandbox AS tc JOIN tc_individual AS ti WHERE tc.individual=ti.individual AND companionship=$companionship ORDER BY ti.name ASC"; $this->db2->query($sql,__LINE__,__FILE__); @@ -663,10 +672,12 @@ class tc } else { $companion_names .= " / " . $this->db2->f('name'); } + $individual = $this->db2->f('individual'); + $switch_case_list .= " $(\"#assignedHT option[value='".$individual."']\").attr(\"selected\",true);\n"; } $this->nextmatchs->template_alternate_row_color(&$this->t); $sandbox_table_data .= ""; - $sandbox_table_data .= ""; + $sandbox_table_data .= ""; $sandbox_table_data .= ""; $sandbox_table_data .= "
$companion_names
$companion_names
"; # get families they visit @@ -675,11 +686,13 @@ class tc while ($this->db2->next_record()) { $family_name = $this->db2->f('name') . " Family"; $family_id = $this->db2->f('tc_family'); + $family = $this->db2->f('family'); $tc_companionship = $this->db2->f('tc_companionship'); $this->nextmatchs->template_alternate_row_color(&$this->t); $sandbox_table_data .= ""; $sandbox_table_data .= ""; - + $switch_case_list .= " $(\"#assignedFamilies option[value='".$family."']\").attr(\"selected\",true);\n"; + # get 12 months visit data for given family for($m=$this->sandbox_stats_num_months; $m >= 0; $m--) { $month = $this->current_month - $m; @@ -713,8 +726,10 @@ class tc } $sandbox_table_data .= "
$family_name
"; + $switch_case_list .= "break;\n"; + $this->t->set_var('switch_case_list',$switch_case_list); + $this->t->fp('sc_list','switch_case_list',True); } - $sandbox_table_data .= ""; $sandbox_table_data .= ""; } diff --git a/templates/default/ht_sandbox.tpl b/templates/default/ht_sandbox.tpl index 2eea7e5..739a887 100644 --- a/templates/default/ht_sandbox.tpl +++ b/templates/default/ht_sandbox.tpl @@ -1,5 +1,20 @@
+ + +
@@ -21,7 +36,7 @@
Companionship
- {companionship_list} @@ -29,35 +44,35 @@

District
- {district}
- {unassigned_ht} - {assigned_ht} - {unassigned_family} - {assigned_family}