add classes to day check in jQuery or else zend doesn't populate the form properly.
This commit is contained in:
parent
81d66ebbb6
commit
f3efc9edaa
|
@ -35,12 +35,6 @@ class Application_Form_AddShowRepeats extends Zend_Form_SubForm
|
||||||
),
|
),
|
||||||
));
|
));
|
||||||
|
|
||||||
$checkboxes = $this->getElement('add_show_day_check');
|
|
||||||
|
|
||||||
$checkboxes->setDecorators(array(array('ViewScript', array(
|
|
||||||
'viewScript' => 'form/add-show-checkbox.phtml'
|
|
||||||
))));
|
|
||||||
|
|
||||||
// Add end date element
|
// Add end date element
|
||||||
$this->addElement('text', 'add_show_end_date', array(
|
$this->addElement('text', 'add_show_end_date', array(
|
||||||
'label' => 'Date End:',
|
'label' => 'Date End:',
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
<dt id="<?php echo $this->element->getName() ?>-label" class="block-display">
|
|
||||||
<?php echo $this->formLabel($this->element->getName(),
|
|
||||||
$this->element->getLabel()) ?>
|
|
||||||
</dt>
|
|
||||||
<dd id="<?php echo $this->element->getName() ?>-element" class="block-display clearfix">
|
|
||||||
<?php $i=0 ?>
|
|
||||||
<?php foreach ($this->element->getMultiOptions() as $opt) : ?>
|
|
||||||
<label class="wrapp-label" for="<?php echo $this->element->getName() ?>-<?php echo $i ?>">
|
|
||||||
<input id="<?php echo $this->element->getName() ?>-<?php echo $i ?>" value="<?php echo $i ?>" type="checkbox" name="add_show_day_check[]"><?php echo $opt ?></input>
|
|
||||||
</label>
|
|
||||||
<?php $i=$i+1 ?>
|
|
||||||
<?php endforeach; ?>
|
|
||||||
<?php if($this->element->hasErrors()) { echo $this->formErrors($this->element->getMessages());} ?>
|
|
||||||
</dd>
|
|
|
@ -59,46 +59,53 @@ function findHosts(request, callback) {
|
||||||
|
|
||||||
function setAddShowEvents() {
|
function setAddShowEvents() {
|
||||||
|
|
||||||
$("h3").click(function(){
|
var form = $("#add-show-form");
|
||||||
|
|
||||||
|
form.find("h3").click(function(){
|
||||||
$(this).next().toggle();
|
$(this).next().toggle();
|
||||||
});
|
});
|
||||||
|
|
||||||
if(!$("#add_show_repeats").attr('checked')) {
|
if(!form.find("#add_show_repeats").attr('checked')) {
|
||||||
$("#schedule-show-when > fieldset:last").hide();
|
form.find("#schedule-show-when > fieldset:last").hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
$("#add_show_repeats").click(function(){
|
form.find("#add_show_repeats").click(function(){
|
||||||
$("#schedule-show-when > fieldset:last").toggle();
|
form.find("#schedule-show-when > fieldset:last").toggle();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#add_show_repeat_type").change(function(){
|
form.find("#add_show_repeat_type").change(function(){
|
||||||
if($(this).val() == 2) {
|
if($(this).val() == 2) {
|
||||||
$("#add_show_day_check-label, #add_show_day_check-element").hide();
|
form.find("#add_show_day_check-label, #add_show_day_check-element").hide();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$("#add_show_day_check-label, #add_show_day_check-element").show();
|
form.find("#add_show_day_check-label, #add_show_day_check-element").show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#add_show_no_end").click(function(){
|
form.find("#add_show_day_check-label").addClass("block-display");
|
||||||
$("#add_show_end_date").toggle();
|
form.find("#add_show_day_check-element").addClass("block-display clearfix");
|
||||||
|
form.find("#add_show_day_check-element label").addClass("wrapp-label");
|
||||||
|
form.find("#add_show_day_check-element br").remove();
|
||||||
|
|
||||||
|
form.find("#add_show_no_end").click(function(){
|
||||||
|
form.find("#add_show_end_date").toggle();
|
||||||
});
|
});
|
||||||
|
|
||||||
createDateInput($("#add_show_start_date"), startDpSelect);
|
createDateInput(form.find("#add_show_start_date"), startDpSelect);
|
||||||
createDateInput($("#add_show_end_date"), endDpSelect);
|
createDateInput(form.find("#add_show_end_date"), endDpSelect);
|
||||||
|
|
||||||
$("#add_show_start_time").timepicker();
|
form.find("#add_show_start_time").timepicker();
|
||||||
$("#add_show_duration").timepicker({
|
form.find("#add_show_duration").timepicker({
|
||||||
amPmText: ['', '']
|
amPmText: ['', '']
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#add_show_hosts_autocomplete").autocomplete({
|
form.find("#add_show_hosts_autocomplete").autocomplete({
|
||||||
source: findHosts,
|
source: findHosts,
|
||||||
select: autoSelect,
|
select: autoSelect,
|
||||||
delay: 200
|
delay: 200
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#schedule-show-style input").ColorPicker({
|
form.find("#schedule-show-style input").ColorPicker({
|
||||||
onChange: function (hsb, hex, rgb, el) {
|
onChange: function (hsb, hex, rgb, el) {
|
||||||
$(el).val(hex);
|
$(el).val(hex);
|
||||||
},
|
},
|
||||||
|
@ -112,7 +119,7 @@ function setAddShowEvents() {
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
$("#add-show-close")
|
form.find("#add-show-close")
|
||||||
.click(function(event){
|
.click(function(event){
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -124,7 +131,7 @@ function setAddShowEvents() {
|
||||||
$("#add-show-form").hide();
|
$("#add-show-form").hide();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#add-show-submit")
|
form.find("#add-show-submit")
|
||||||
.button()
|
.button()
|
||||||
.click(function(event){
|
.click(function(event){
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
Loading…
Reference in New Issue