コード例 #1
0
ファイル: editLastSuccess.php プロジェクト: taryono/school
echo __('Receivable');
?>
</label></td>
           <td width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   <td style="vertical-align:middle;">
			<p id=receivable_disp>
				<?php 
#echo object_input_tag($payment_journal, '', array ( 'size' => 7,'readonly'=>1, 'name' => 'receivable', 'id' => 'receivable'))
?>
				<input type="text" name="receivable" value="" id="receivable" size="7" readonly="readonly"/>
            </p>
			<?php 
echo form_error('receivable');
?>
			<?php 
echo observe_field('paid', array('update' => 'receivable_disp', 'url' => 'payment_journal_ta/getReceivable2', 'with' => "'paid='+\$('paid').value+'&receivable1='+\$('receivable1').value"));
?>
		   </td>
        </tr>
        <tr>
           <td style="vertical-align:middle;"><label><?php 
echo __('Status');
?>
</label></td>
           <td width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   <td style="vertical-align:middle;">
           <?php 
echo select_tag('status', options_for_select(array(PaymentJournal::STATUS_SETTLED => __('_PAYMENT_STATUS_SETTLED_'), PaymentJournal::STATUS_PLUS => __('_PAYMENT_STATUS_PLUS_'), PaymentJournal::STATUS_MINUS => __('_PAYMENT_STATUS_MINUS_')), strlen($payment_journal->getStatus()) > 0 ? $payment_journal->getStatus() : null, array('include_blank' => false)));
?>
			<?php 
echo form_error('status');
コード例 #2
0
ファイル: listSuccess.php プロジェクト: taryono/school
    <td class="form" style="vertical-align:top;">
            <table class="form_content" width="100%">
            <tbody>
                    <tr>
                            <td class='first' width="100%" style="vertical-align:top;">
                                    <label><?php 
echo __('Academic calendar');
?>
</label><br/>
                                            <?php 
echo my_object_select_tag($counseling, 'getAcademicCalendarId', AcademicCalendarPeer::getParents(), array('related_class' => 'AcademicCalendar', 'include_blank' => true, 'peer_method' => 'doSelectFiltered'));
?>
<br />
                                    <div class="tips">pilih tahun ajaran yang diinginkan</div>    
                            </td>
                    </tr>

                    <tr>
                            <td width="100%" class="first">
                                    <div id='subject_list' style="overflow: auto; width: 100%; height: 50em;"></div>
                                    <?php 
echo observe_field('academic_calendar_id', array('update' => 'subject_list', 'url' => 'score_admin/getSubject', 'with' => "'academic_calendar_id='+\$('academic_calendar_id').value+'&employee_id='+\$('employee_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
                            </td>
                    </tr>			

            </tbody>
            </table>
    </td></tr>
    </table>
    </form>
コード例 #3
0
                                          <td class='first' width="15%" style="vertical-align: top;"><label><?php 
echo __('Kompetensi Penilaian');
?>
</label></td>
                                          <td class="first" width="1%" style="text-align: center; vertical-align: top;">:</td>
                                          <td class="first" style="vertical-align: top;">
                                                 <?php 
echo object_select_tag('grade_spec_id', 'grade_spec_id', array('related_class' => 'VSpec', 'include_blank' => true, 'peer_method' => 'doSelectFiltered'));
?>
                                                 <?php 
echo form_error('grade_spec_id');
?>
                                                 <div class="tips">Pilih Kompetensi Penilaian yang akan diberikan nilai</div> 
                                           </td>
                                    </tr>
                                    
                                    <tr>
                                            <td width="100%" colspan="3">
                                                    <div id='subject_list' style="overflow: auto; width: 100%; height: 135em; border: 1px solid #000;"></div>
                                                    <?php 
echo observe_field('grade_spec_id', array('update' => 'subject_list', 'url' => 'course_score/getDescHistory', 'with' => "'grade_spec_id='+\$('grade_spec_id').value+'&course_id='+\$('course_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
                                            </td>
                                    </tr>
                                    
                          </tbody>
                          </table>

             </td></tr>
        </table>
        </form>
コード例 #4
0
<?php

use_helper("Object", "Javascript");
?>
  <?php 
echo label_for('pasaje[fk_division_destino_id]', __('Division destino:'), 'class="required" ');
?>
  <?php 
echo select_tag('pasaje[fk_division_destino_id]', options_for_select($optionsDivisiones));
?>
  <?php 
echo observe_field('pasaje_fk_division_destino_id', array('update' => 'alumnos', 'url' => 'ciclolectivo/listarAlumnos', 'with' => "'division_id=' + \$('pasaje_fk_division_id').value +'&division_no_id=' + value", 'script' => "true", 'before' => "\$('indicator-wrapper').style.display='block'", 'complete' => "\$('indicator-wrapper').style.display='none'"));
コード例 #5
0
ファイル: _pais_id.php プロジェクト: mediasadc/alba
<?php

use_helper('Javascript');
$c = new Criteria();
$paises = PaisPeer::doSelect($c);
if ($organizacion->getFkProvinciaId()) {
    $pais_selected = $organizacion->getProvincia()->getPais()->getId();
    $provincia_id = $organizacion->getFkProvinciaId();
} else {
    $pais_selected = $paises[0]->getId();
    $provincia_id = 0;
}
echo select_tag('pais_id', objects_for_select(PaisPeer::getEnOrden(), 'getId', 'getNombreLargo', $pais_selected));
echo observe_field('pais_id', array('update' => 'item_provincia', 'url' => 'organizacion/cambiarPais', 'with' => "'pais_id=' + value"));
echo javascript_tag(remote_function(array('update' => 'item_provincia', 'url' => 'organizacion/cambiarPais?pais_id=' . $pais_selected . '&provincia_id=' . $provincia_id)));
コード例 #6
0
ファイル: addStuSuccess.php プロジェクト: taryono/school
                            <tbody>
                                <tr>
                                     <td class='first' style="vertical-align:top;">
                                         <label><?php 
echo __('Class group');
?>
</label><br>
                                         <?php 
echo select_tag('class_group_id', options_for_select($content, ''), array('include_blank' => true));
?>
                                         <div class="tips"><?php 
echo __('Tentukan Kelas yang inginkan');
?>
</div>
                                     </td>
                                </tr>
                                <tr>
                                     <td  style="vertical-align: top;" class="first">
                                        <div id='subject_list' style="overflow: auto; width: 100%; height: 100em;"></div>
                                        <?php 
echo observe_field('class_group_id', array('update' => 'subject_list', 'url' => 'extracurricular_new/addEksStu', 'with' => "'accal_id='+\$('accal_id').value+'&detail_id='+\$('detail_id').value+'&schedule_id='+\$('schedule_id').value+'&class_id='+\$('class_group_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
                                     </td>   
                                </tr>
                            </tbody>
                        </table>
                    </td>
                </tr>    
            </table>    
        </td></tr>
</table>
コード例 #7
0
ファイル: listFinalSuccess.php プロジェクト: taryono/school
		
		<tr>
			<td width="100%">
				<div id='detail_list' style="overflow: auto; width: 100%; height: 14em;"></div>
				<?php 
echo observe_field('academic_calendar_id', array('update' => 'detail_list', 'url' => 'student_info/getDetail', 'with' => "'academic_calendar_id='+\$('academic_calendar_id').value+'&student_id='+\$('student_id').value+'&include_blank=true'", 'before' => "showIndicator('detail_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
			</td>
		</tr>			

	</tbody>
	</table>
</td></tr>
</table>
</form>

<table class="form">
<tr><td class="form">
	<table class="form_content" width="100%">
	<tbody>
		<tr><td class='first' width="100%">
		<div id='subject_list' style="overflow: auto;width: 100%; height: 60em;"></div>
			<?php 
echo observe_field('academic_calendar_id', array('update' => 'subject_list', 'url' => 'student_info/getListFinalAll', 'with' => "'academic_calendar_id='+\$('academic_calendar_id').value+'&student_id='+\$('student_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
        </td></tr>
	</tbody>
	</table>
</td></tr>
</table>
コード例 #8
0
ファイル: studentSuccess.php プロジェクト: taryono/school
echo __('Class group');
?>
</label><br/>
											<?php 
echo object_select_tag($counsel, 'getClassGroupId', array('related_class' => 'ClassGroup', 'include_blank' => true, 'peer_method' => 'doSelectFiltered'));
?>
  
											<div class="tips"><?php 
echo __('Pilih Kelas Asal Peserta Kelas yang akan dipilih');
?>
</div>    
                                    </td>
                                </tr>
								<tr>
                                    <td colspan="2" style="vertical-align:top;">
										<div id='student_list' style="overflow: auto; width: 100%; height: 120em;"></div>
                                        <?php 
echo observe_field('class_group_id', array('update' => 'student_list', 'url' => 'counselor_new/getStudent', 'with' => "'&accal_id='+\$('academic_calendar_id').value+'&counseling_id='+\$('counsel_id').value+'&class_id='+\$('class_group_id').value+'&include_blank=true'", 'before' => "showIndicator('student_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
									</td>
                                </tr>
                            </tbody>
                        </table>
                    </td>
                </tr>
            </table>
		</td>
	</tr>		
</table>

コード例 #9
0
ファイル: listTestSuccess.php プロジェクト: taryono/school
                    <tr>
                        <td style="vertical-align:top;"><label ><?php 
echo __('Test Location');
?>
</label></td>
                        <td style="text-align:center; vertical-align:top;">:</td>
                        <td style="vertical-align:top;">
                            <?php 
echo select_tag('ng_test_schedule_id', options_for_select($ng_test_schedules, $selected_ng_test_schedules), array('include_blank' => true, 'size' => 5));
?>
                            <?php 
echo form_error('ng_test_schedule_id');
?>
                            <?php 
echo observe_field('ng_reg_test_period_id', array('update' => 'ng_test_schedule_id', 'url' => 'ng_reg_detail/selectSchedByPeriod', 'with' => "'ng_reg_test_period_id='+\$('ng_reg_test_period_id').value"));
?>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="3" style="vertical-align: top;">
                            <div id='subject_list' style="overflow: auto; width: 100%; height: 80em;"></div>
                            <?php 
echo observe_field('ng_test_schedule_id', array('update' => 'subject_list', 'url' => 'ng_reg_detail/getApplSched', 'with' => "'ng_reg_test_period_id='+\$('ng_reg_test_period_id').value+'&ng_test_schedule_id='+\$('ng_test_schedule_id').value+'&ng_reg_period_id='+\$('ng_reg_period_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
                        </td>
                    </tr>
                </tbody>
            </table>
        </td></tr>
</table>
</form>
コード例 #10
0
            </tr>
            <tr>
               <td style="vertical-align:top;"><label><?php 
echo __('Subject');
?>
</label></td>
               <td style="text-align:center; vertical-align:top;">:</td>
               <td style="vertical-align:top;">
                            <?php 
echo select_tag('course_schedule_id', options_for_select($courses, $class_counseling->getCourseScheduleId() ? $class_counseling->getCourseScheduleId() : ''), array('include_blank' => false));
?>
                            <?php 
echo form_error('course_schedule_id');
?>
                            <?php 
echo observe_field('class_group_id', array('update' => 'course_schedule_id', 'url' => 'course_counseling/selectByClass', 'with' => "'class_id='+\$('class_group_id').value+'&accal_id='+\$('academic_calendar_id').value+'&include_blank=true'"));
?>
               </td>
            </tr>
            <tr>
               <td style="vertical-align:top;"><label><?php 
echo __('Status');
?>
</label></td>
               <td style="text-align:center; vertical-align:top;">:</td>
               <td style="vertical-align:top;">
               <?php 
echo object_select_tag($class_counseling, 'getCounselingStatusId', array('related_class' => 'CounselingStatus', 'include_blank' => true));
?>
                       <?php 
echo form_error('counseling_status_id');
コード例 #11
0
ファイル: listScoreSuccess.php プロジェクト: taryono/school
?>
 </div>             
		   </td>
        </tr-->
    </tbody>
	</table>
</td></tr>
</table>        
<br />
<table class="form">
<tr><td class="form">
	<table class="form_content" width="100%">
	<tbody>
		<tr><td class='first'>
			<label><?php 
echo __('Student');
?>
</label>
			<div id='student_list' style="overflow: auto;width: 100%; height: 30em;border: 1px solid black;"></div>
			<?php 
echo observe_field('grade_spec_id', array('update' => 'student_list', 'url' => 'course_detail/getList', 'with' => "'course_id='+\$('course_schedule_id').value+'&grade_spec_id='+\$('grade_spec_id').value+'&include_blank=true'", 'before' => "showIndicator('student_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
        </td></tr>
	</tbody>
	</table>
</td></tr>
</table>

</td></tr>
</table>
</form>
コード例 #12
0
ファイル: listSuccess.php プロジェクト: taryono/school
            <table class="form_content" width="100%">
                <tbody>
                    <tr>
                        <td class='first' width="100%" style="vertical-align:top;">
                            <label><?php 
echo __('Academic calendar');
?>
</label><br/>
                            <?php 
echo my_object_select_tag($counseling, 'getAcademicCalendarId', AcademicCalendarPeer::getParents(), array('related_class' => 'AcademicCalendar', 'include_blank' => true, 'peer_method' => 'doSelectFiltered'));
?>
<br />
                            <div class="tips">pilih tahun ajaran yang diinginkan</div>    
                        </td>
                    </tr>

                    <tr>
                        <td width="100%">
                            <div id='subject_list' style="overflow: auto; width: 100%; height: 50em;"></div>
                            <?php 
echo observe_field('academic_calendar_id', array('update' => 'subject_list', 'url' => 'rpt_counseling/getCounseling', 'with' => "'academic_calendar_id='+\$('academic_calendar_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
                        </td>
                    </tr>			

                </tbody>
            </table>
        </td></tr>
</table>
</form>
コード例 #13
0
ファイル: editSuccess.php プロジェクト: taryono/school
		</td></tr>
		<tr><td >
			<label ><?php 
echo __('Receivable');
?>
</label><br/>
			<p id=receivable_disp>
				<?php 
echo object_input_tag($payment_journal, 'getReceivable', array('size' => 7, 'readonly' => 1));
?>
			</p>
			<?php 
echo form_error('receivable');
?>
			<?php 
echo observe_field('paid', array('update' => 'receivable_disp', 'url' => 'payment_journal/getReceivable', 'with' => "'paid='+\$('paid').value+'&amount='+\$('amount').value"));
?>
		</td><td >
			<label><?php 
echo __('Status');
?>
</label><br/>
			<?php 
echo select_tag('status', options_for_select(array(PaymentJournal::STATUS_SETTLED => __('_PAYMENT_STATUS_SETTLED_'), PaymentJournal::STATUS_PLUS => __('_PAYMENT_STATUS_PLUS_'), PaymentJournal::STATUS_MINUS => __('_PAYMENT_STATUS_MINUS_')), strlen($payment_journal->getStatus()) > 0 ? $payment_journal->getStatus() : null, array('include_blank' => false)));
?>
			<?php 
echo form_error('status');
?>
		</td></tr>
		<tr><td>
			<label ><?php 
コード例 #14
0
ファイル: editSuccess.php プロジェクト: taryono/school
			<?php 
echo observe_field('subject_accal_id', array('update' => 'class_group_id', 'url' => 'class_group/selectBySubjectAccal', 'with' => "'class_group_id='+\$('class_group_id').value+'&subject_accal_id='+\$('subject_accal_id').value", 'before' => "showIndicator('class_group_id', 'barsmall_white');", 'complete' => "hideIndicator();"));
?>
			<p class="tips" style="padding-top: 2px;">&nbsp;&nbsp;&nbsp;<a style="background: #C5E300;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a> = <?php 
echo __('Schedule defined');
?>
</p>
		</td></tr>
		<tr><td colspan="2" valign="top">
			<label><?php 
echo __('Course schedule');
?>
</label><br/>
			<?php 
echo select_tag('schedule_list', options_for_select($schedules, '', array('include_blank' => false)), array('multiple' => true, 'size' => count($schedules) > 10 ? 15 : 10, 'disabled' => true));
?>
			<?php 
echo observe_field('class_group_id', array('update' => 'schedule_list', 'url' => 'course_schedule_s/getSchedules', 'with' => "'class_group_id='+\$('class_group_id').value+'&subject_accal_id='+\$('subject_accal_id').value", 'before' => "showIndicator('schedule_list', 'barsmall_white');", 'complete' => "hideIndicator()"));
echo observe_field('subject_accal_id', array('update' => 'schedule_list', 'url' => 'course_schedule_s/getSchedules', 'with' => "'class_group_id='+\$('class_group_id').value+'&subject_accal_id='+\$('subject_accal_id').value", 'before' => "showIndicator('schedule_list', 'barsmall_white');", 'complete' => "hideIndicator()"));
?>
			<p class="tips">&nbsp;&nbsp;&nbsp;<?php 
echo __('room capacity') . ' # ' . __('lector') . ' # ' . __('location') . ' # ' . __('day') . ' # ' . __('class session');
?>
</p>
		</td></tr>
	</tbody>
	</table>
</td></tr>
</table>
</form>
コード例 #15
0
ファイル: editSuccess.php プロジェクト: taryono/school
echo form_error('class_group_id');
?>
		   </td>
        </tr>
    </tbody>
	</table>
</td></tr>
</table>        
<br />
<table class="form">
<tr><td class="form">
	<table class="form_content" width="100%">
	<tbody>
		<tr><td class='first'>
			<label><?php 
echo __('Student');
?>
</label>
			<div id='student_list' style="overflow: auto;width: 100%; height: 30em;border: 1px solid black;"></div>
			<?php 
echo observe_field('class_group_id', array('update' => 'student_list', 'url' => 'course_ekskul/getList', 'with' => "'class_group_id='+\$('class_group_id').value+'&include_blank=true'", 'before' => "showIndicator('student_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
        </td></tr>
	</tbody>
	</table>
</td></tr>
</table>

</td></tr>
</table>
</form>
コード例 #16
0
ファイル: createSuccess.php プロジェクト: taryono/school
echo form_error('class_group_id');
?>
        </td></tr>
	</tbody>
	</table>
</td></tr>
</table>
</form>

<table class="form">
<tr><td class="form">
	<table class="form_content" width="100%">
	<tbody>
		<tr><td class='first'>
			<label><?php 
echo __('Subject');
?>
</label>
			<div id='course_list' style="overflow: auto;width: 100%; height: 30em;border: 1px solid black;"></div>
			<?php 
echo observe_field('academic_calendar_id', array('update' => 'course_list', 'url' => 'course_regulation/getListCourse', 'with' => "'accal_id='+\$('academic_calendar_id').value+'&include_blank=true'"));
?>
            <?php 
echo observe_field('class_group_id', array('update' => 'course_list', 'url' => 'course_regulation/getListCourse', 'with' => "'class_id='+\$('class_group_id').value", 'before' => "showIndicator('course_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
        </td></tr>
	</tbody>
	</table>
</td></tr>
</table>
コード例 #17
0
ファイル: listStudentSuccess.php プロジェクト: taryono/school
echo __('Daftar Murid');
?>
</label></td>
                                    <td style="text-align:center; vertical-align:middle;">:</td>
                                    <td style="vertical-align:middle;">
                                        <?php 
echo select_tag('student_id', options_for_select($student_options, '', array('related_class' => 'Student', 'include_blank' => true)));
?>
                                        <?php 
echo form_error('student_id');
?>
                                        <div class="tips">Pilih Murid yang akan diberikan nilai</div>    		            
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </td></tr>
            </table>        
            <br />
            <div id='subject_list' style="overflow: auto; width: 100%; height: 75em; border: 0px solid black;"></div>
            <?php 
echo observe_field('student_id', array('update' => 'subject_list', 'url' => 'course_score_new/getStudentScore', 'with' => "'course_id='+\$('course_schedule_id').value+'&student_id='+\$('student_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>

        </td></tr>
</table>

</td></tr>
</table>
</form>
コード例 #18
0
ファイル: editSchedSuccess.php プロジェクト: taryono/school
        		<tr>
           			<td style="vertical-align:middle;"><label><?php 
echo __('_LECTOR_LIST_');
?>
</label></td>
           			<td width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   		<td style="vertical-align:middle;">
            				<?php 
echo select_tag('employee_id', options_for_select($lectors, $selected_lector), array('include_blank' => false, 'size' => 5));
?>
					<?php 
echo form_error('employee_id');
?>
					<?php 
echo observe_field('subject_curr_id', array('update' => 'employee_id', 'url' => 'schedule/getLectors', 'with' => "'subject_curr_id='+\$('subject_curr_id').value"));
echo observe_field('academic_calendar_id', array('update' => 'employee_id', 'url' => 'schedule/getLectors', 'with' => "'subject_curr_id=0'"));
?>
           			</td>         
        		</tr>
        
        		<tr>
           			<td style="vertical-align:middle;"><label><?php 
echo __('Location');
?>
</label></td>
           			<td width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   		<td style="vertical-align:middle;">
            			<?php 
echo object_select_tag($schedule, 'getLocationId', array('related_class' => 'Location', 'peer_method' => 'doSelectFiltered', 'include_blank' => true));
?>
				<?php 
コード例 #19
0
ファイル: _pais_id.php プロジェクト: mediasadc/alba
<?php

use_helper('Javascript');
$c = new Criteria();
$paises = PaisPeer::doSelect($c);
if ($responsable->getFkProvinciaId()) {
    $pais_selected = $responsable->getProvincia()->getPais()->getId();
    $provincia_id = $responsable->getFkProvinciaId();
} else {
    $pais_selected = $paises[0]->getId();
    $provincia_id = 0;
}
echo select_tag('pais_id', objects_for_select(PaisPeer::getEnOrden(), 'getId', 'getNombreLargo', $pais_selected));
echo observe_field('pais_id', array('update' => 'item_provincia', 'url' => 'responsable/cambiarPais', 'with' => "'pais_id=' + value"));
echo javascript_tag(remote_function(array('update' => 'item_provincia', 'url' => 'responsable/cambiarPais?pais_id=' . $pais_selected . '&provincia_id=' . $provincia_id)));
コード例 #20
0
ファイル: editSuccess.php プロジェクト: taryono/school
			<?php 
echo select_tag('employee_id', options_for_select($coordinators, $subject_accal->getEmployeeId(), array('include_blank' => false)));
?>
			<?php 
echo form_error('employee_id');
?>
			<?php 
echo observe_field('subject_id', array('update' => 'employee_id', 'url' => 'subject_accal_l/getLectors', 'with' => "'subject_id='+\$('subject_id').value"));
?>
		</td></tr>
		<tr><td >
			<label><?php 
echo __('_LECTOR_LIST_');
?>
</label><br/>
			<?php 
echo select_tag('lectors', options_for_select($lectors, $selected_lectors), array('include_blank' => false, 'multiple' => true, 'size' => 10));
?>
			<?php 
echo form_error('lectors');
?>
			<?php 
echo observe_field('subject_id', array('update' => 'lectors', 'url' => 'subject_accal_l/getLectors', 'with' => "'subject_id='+\$('subject_id').value"));
?>
		</td></tr>
	</tbody>
	</table>
</td></tr>
</table>
</form>
コード例 #21
0
            }
            ?>
																</td>
															</tr>
                                                        <?php 
        }
        ?>
                                                    <?php 
    }
    ?>
                                                </tbody>
                                            </table>
                                        </td></tr>
                                </table>                                 
                            <?php 
}
?>
                        </div>
                        <?php 
echo observe_field('cur13_term_id', array('update' => 'content', 'url' => 'course_sd/listScoreKi4', 'with' => "'course_id='+\$('course_id').value+'&accal_id='+\$('accal_id').value+'&cur13_term_id='+\$('cur13_term_id').value+'&include_blank=true'", 'before' => "showIndicator('student_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
                    </td>
                </tr>
            </table>
            
        </td>
    </tr>
</table>

</form>
コード例 #22
0
        ?>
    <?php 
    }
    ?>

    <?php 
    $fases = $documento->getIdproyecto() ? FasePeer::getFasesEmpresaProyecto($documento->getIdProyecto()) : array();
    ?>
  
  
    <?php 
    echo select_tag('documento[id_fase]', objects_for_select($fases, 'getIdFase', 'getNombre', $documento->getIdfase(), array('include_custom' => "- " . __('Sin definir') . " -")), array());
    ?>
       
    <?php 
    echo observe_field('documento_id_fase', array('frequency' => 1, 'script' => 'true', 'update' => 'reuniones', 'url' => 'documentos/elegirfase', 'with' => "'id_proyecto='+\$('documento_id_proyecto').value+'id_fase='+\$('documento_id_fase').value"));
    ?>
      </div>
  </div>
  
  <div class="form-row">
    <?php 
    echo label_for('documento[id_reunion]', __($labels['documento{id_reunion}']), '');
    ?>
    <div id="reuniones" class="content<?php 
    if ($sf_request->hasError('documento{id_reunion}')) {
        ?>
 form-error<?php 
    }
    ?>
">
コード例 #23
0
ファイル: createSuccess.php プロジェクト: taryono/school
                                    </tr>
                                    <tr>
                                        <td style="vertical-align:middle;"><label class="applicant"><?php 
echo __('Reg Period');
?>
 *</label></td>
                                        <td style="text-align:center; vertical-align:middle;">:</td>
                                        <td style="vertical-align:middle;">
                                            <?php 
echo select_tag('ng_reg_period', options_for_select($ng_reg_periods, $selected_reg_periods), array('include_blank' => true));
?>
                                            <?php 
echo form_error('ng_reg_period');
?>
                                            <?php 
echo observe_field('department_id', array('update' => 'ng_reg_period', 'url' => 'ng_test_applicant/selectPeriodByDept', 'with' => "'department_id='+\$('department_id').value"));
?>
                                        </td>
                                    </tr>
                                    <tr>
                                        <td style="vertical-align:middle;"><label class="applicant"><?php 
echo __('Nama Orang Tua/Wali');
?>
 *</label></td>
                                        <td style="text-align:center; vertical-align:middle;">:</td>
                                        <td style="vertical-align:middle;">
                                            <?php 
echo object_input_tag($ng_test_applicant, 'getEnquirer', array('size' => 30, 'maxlength' => 255));
?>
, 
                                            <?php 
コード例 #24
0
ファイル: editSuccess.php プロジェクト: taryono/school
        </tr>
        <tr>    
           <td style="vertical-align:top;"><label><?php 
echo __('Standar Kompetensi');
?>
</label></td>
           <td style="text-align:center; vertical-align:top;">:</td>
           <td style="vertical-align:top;">
			<?php 
echo select_tag('subject_grading_id', options_for_select($grades, $selected_grade), array('include_blank' => false, 'size' => 7));
?>
			<?php 
echo form_error('subject_grading_id');
?>
			<?php 
echo observe_field('course_schedule_id', array('update' => 'subject_grading_id', 'url' => 'class_agenda/selectByCourse', 'with' => "'course_id='+\$('course_schedule_id').value"));
?>
           </td>
        </tr> 
        <tr>
           <td style="vertical-align:top;"><label><?php 
echo __('Class group');
?>
</label></td>
           <td style="text-align:center; vertical-align:top;">:</td>
           <td style="vertical-align:top;">
            <?php 
echo object_select_tag($class_agenda, 'getClassGroupId', array('related_class' => 'VClass', 'include_blank' => true, 'peer_method' => 'doSelectFiltered'));
?>
			<?php 
echo form_error('class_group_id');
コード例 #25
0
ファイル: createSuccess.php プロジェクト: taryono/school
?>

<table class="form">
<tr><td class="form">
	<table class="form_content" width="100%">
	<tbody>
    	<tr>
           <td class='first' width="20%" style="vertical-align:middle;"><label><?php 
echo __('Ditujukan Untuk');
?>
</label></td>
           <td class="first" width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   <td class="first" style="vertical-align:middle;">
		   <?php 
echo select_tag('toward', options_for_select(array('', PublicInformation::STUDENT => __('Siswa'), PublicInformation::EMPLOYEE => __('Guru')), ''));
echo observe_field('toward', array('url' => 'employee_email/loadAttributes', 'update' => 'email_attribute', 'script' => 'true', 'with' => "'toward='+\$('toward').value+'&id='+\$('id').value"));
?>
           </td>
        </tr>
        <tr>
			<td colspan="3" class="first">
				<div id="email_attribute">
					<?php 
if (isset($email_attr_tmpl)) {
    include $email_attr_tmpl;
}
?>
				</div>
			</td>
		</tr>
 	</tbody>
コード例 #26
0
ファイル: copySuccess.php プロジェクト: taryono/school
echo object_select_tag($location, 'getAcademicCalendarId', array('include_blank' => true, 'related_class' => 'AcademicCalendar', 'text_method' => '__toString', 'peer_method' => 'doSelectFiltered', 'name' => 'accal2', 'id' => 'accal2'));
?>
            <?php 
echo form_error('accal2');
?>
            </td>
        </tr>
      </tbody>
	</table>
</td></tr>
</table>
</form>

<table class="form">
<tr><td class="form">
	<table class="form_content" width="100%">
	<tbody>
		<tr><td class='first'>
			<label>Pilih&nbsp;<?php 
echo __('Location');
?>
&nbsp;yang akan disalin</label>
			<div id='location_list' style="overflow: auto;width: 100%; height: 30em;border: 1px solid black;"></div>
			<?php 
echo observe_field('academic_calendar_id', array('update' => 'location_list', 'url' => 'location/getListForCopy', 'with' => "'academic_calendar_id='+\$('academic_calendar_id').value+'&include_blank=true'", 'before' => "showIndicator('location_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
        </td></tr>
	</tbody>
	</table>
</td></tr>
</table>
コード例 #27
0
ファイル: registerSuccess.php プロジェクト: taryono/school
        	<legend>Program Pilihan</legend>
        	<div>
            	<label style="width: 150px;">Tingkat *</label>
				<?php 
echo my_object_select_tag('department_id', 'department_id', DepartmentPeer::getParents(), array('related_class' => 'Department', 'include_blank' => true, 'peer_method' => 'doSelectOrdered'));
?>
            				<?php 
echo form_error('department_id');
?>
                <p style="font-size: 10px; margin-top: -7px; margin-left: 150px;">Pilih Tingkat</p>
                <label style="width: 150px;">Kelas Pilihan *</label>
				<?php 
echo object_select_tag($applicant, 'getClassGroup1', array('related_class' => 'VClassGroup', 'include_blank' => true, 'peer_method' => 'doSelectAll'));
?>
            	<?php 
echo observe_field('department_id', array('update' => 'class_group1', 'url' => 'applicant/selectByDept', 'with' => "'department_id='+\$('department_id').value"));
?>
				<?php 
echo form_error('class_group1');
?>
                <p style="font-size: 10px; margin-top: -7px; margin-left: 150px;">Pilih program pilihan Anda.</p>
            </div>
        </fieldset>
        <fieldset style="margin-top: 5px;">
        	<legend>Detail Identitas</legend>
            <div>
            	<label style="width: 150px;">Nama Ayah *</label>
				<?php 
echo object_input_tag($applicant_detail, 'getParentName', array('size' => 40, 'maxlength' => 255));
?>
                <?php 
コード例 #28
0
ファイル: createSuccess.php プロジェクト: taryono/school
        </tr>
        <tr>
           <td style="vertical-align:middle;"><label><?php 
echo __('Nama Siswa');
?>
</label></td>
           <td width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   <td style="vertical-align:middle;">
		    <?php 
echo select_tag('student_id', options_for_select($students, $selected_student), array('include_blank' => true));
?>
			<?php 
echo form_error('student_id');
?>
			<?php 
echo observe_field('class_group_id', array('update' => 'student_id', 'url' => 'payment_student/selectByClass', 'with' => "'class_id='+\$('class_group_id').value"));
?>
           </td>
        </tr>
        <tr>
           <td style="vertical-align:middle;"><label ><?php 
echo __('Tanggal Transaksi');
?>
</label></td>
           <td width="2%" style="text-align:center; vertical-align:middle;">:</td>
		   <td style="vertical-align:middle;">
			<?php 
echo object_input_date_tag($payment_student, 'getPaidAt', array('rich' => true, 'withtime' => true, 'calendar_button_img' => '/images/calendar.gif'), date('Y/m/d h:i'));
?>
			<?php 
echo form_error('paid_at');
コード例 #29
0
ファイル: createSuccess.php プロジェクト: taryono/school
	</table>
	</form>
	</td>

	<td width="1%">&nbsp;</td>

	<td width="60%" valign="top">
	
	<table class="form">
		<tr><td class="form">
			<table class="form_content" width="100%">
				<tbody>
					<tr><td class='first'>
					<label><?php 
echo __('Subject');
?>
</label>
					<div id='subject_list' style="overflow: auto;width: 100%; height: 30em;border: 0px solid black;"></div>
					<?php 
echo observe_field('class_group_id', array('update' => 'subject_list', 'url' => 'subject_curriculum/getListForCourse', 'with' => "'class_group_id='+\$('class_group_id').value+'&academic_calendar_id='+\$('academic_calendar_id').value+'&include_blank=true'", 'before' => "showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator();"));
?>
        				</td></tr>
				</tbody>
			</table>
		</td></tr>
	</table>
		
	</td>
</tr>
</table>
コード例 #30
0
ファイル: editScoreSuccess.php プロジェクト: taryono/school
echo input_hidden_tag('class_group_id', $class_group_id);
echo input_hidden_tag('subject_accal_id', $subject_accal_id);
?>

<table class="form">
<tr><td class="form">
	<table class="form_content">
	<tbody>
		<tr>
			<td class='first'><label><?php 
echo __('GradeComponent');
?>
</label>
				<?php 
echo select_tag('subject_grading_id', options_for_select($subject_gradings, null, array('include_blank' => true)));
echo observe_field('subject_grading_id', array('update' => 'scores', 'url' => 'subject_accal_l/getScores', 'with' => "'subject_grading_id='+\$('subject_grading_id').value+'&subject_accal_id={$subject_accal_id}&class_group_id={$class_group_id}'", 'before' => "showIndicator('scores', 'snakebig_black');", 'complete' => "hideIndicator()"));
?>
			</td>
		</tr>
		<tr>
			<td>
				<table id=scores>
					<tr>
						<td class='first'><label><?php 
echo __('Student');
?>
</label></td>
						<td class='first'><label><?php 
echo __('KKM');
?>
</label></td>