Skip to content
Snippets Groups Projects

when selecting flying team, location is autmatically marked as "Flying team"

Merged Piotr Gawron requested to merge 91-appointment-with-flying-team into master
3 files
+ 21
1
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -90,6 +90,24 @@ function appointment_type_behaviour(checkboxes, outObject, api_call) {
@@ -90,6 +90,24 @@ function appointment_type_behaviour(checkboxes, outObject, api_call) {
});
});
}
}
 
/**
 
* When any option is selected in flying_team_select, location value is set to flying team.
 
*
 
* @param flying_team_select
 
* @param location_select
 
*/
 
function appointment_flying_team_place_behaviour(flying_team_select, location_select) {
 
$(flying_team_select).change(function () {
 
if ($(this).val() != "") {
 
$(location_select).find('option').each(function () {
 
if ("Flying Team" == $(this).html()) {
 
$(location_select).val($(this).val());
 
}
 
});
 
}
 
});
 
}
 
function get_calendar_events_function(source, allow_url_redirection) {
function get_calendar_events_function(source, allow_url_redirection) {
if (allow_url_redirection === undefined) {
if (allow_url_redirection === undefined) {
allow_url_redirection = false;
allow_url_redirection = false;
@@ -127,4 +145,4 @@ function get_calendar_events_function(source, allow_url_redirection) {
@@ -127,4 +145,4 @@ function get_calendar_events_function(source, allow_url_redirection) {
}
}
});
});
}
}
}
}
\ No newline at end of file
Loading