function switch_toggle(toggle, flag){ var toggle_id = $(toggle).attr('target_toggle'); if ($(toggle).attr('checked')=='checked' || $(toggle).attr('checked')==true) { if ($('[toggle_id="'+toggle_id+'_wrap"]').size()) { $('[toggle_id="'+toggle_id+'_wrap"]').show(); } $('[toggle_id="'+toggle_id+'"]').slideDown(); $('[toggle_id="'+toggle_id+'"]').find('input').removeAttr('disabled'); $('[toggle_id="'+toggle_id+'"]').find('select').removeAttr('disabled'); } else { $('[toggle_id="'+toggle_id+'"]').slideUp("normal", function(){ if ($('[toggle_id="'+toggle_id+'_wrap"]').size()) { $('[toggle_id="'+toggle_id+'_wrap"]').hide(); } }); if (flag!=1) { $('[toggle_id="'+toggle_id+'"]').find('input').attr('disabled', 'disabled'); $('[toggle_id="'+toggle_id+'"]').find('select').attr('disabled', 'disabled'); } } } $(document).ready(function(){ $('input[target_toggle]').each(function () { if ($(this).attr('enable_check')) { var toggle_id = $(this).attr('target_toggle'); var checked = false; $('[toggle_id="'+toggle_id+'"]').find('input:checked').each(function(){ if ($(this).val()>0) { checked = true; } }); $('[toggle_id="'+toggle_id+'"]').find('select option:selected').each(function(){ if ($(this).val()>0) { checked = true; } }); if (checked==true) { $(this).attr('checked', 'checked'); } } else { switch_toggle(this, 1); } }); $('input[target_toggle]').click(function () { switch_toggle(this); }); $('input[name="station_id[]"]').click(function(){ if ($(this).attr('checked')==false) { $('input[name="station_id[]"][value='+$(this).val()+']').attr('checked', ''); } }); });