kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.6 KiB
76 lines
2.6 KiB
12 years ago
|
//requires 'timelines_autocompleter'
|
||
|
|
||
|
jQuery(document).ready(function($) {
|
||
|
[
|
||
|
$("#reporting_reported_project_status_id"),
|
||
|
$("#timeline_select"),
|
||
|
$("#timeline_options_columns"),
|
||
|
$("#timeline_options_initial_outline_expansion"),
|
||
|
$("#timeline_options_zoom_factor"),
|
||
|
$("#timeline_options_compare_to_relative_unit")
|
||
|
].each(function (item) {
|
||
|
$(item).select2({
|
||
|
'minimumResultsForSearch': 12
|
||
|
});
|
||
|
});
|
||
|
|
||
|
[
|
||
|
$("#timeline_options_project_responsibles"),
|
||
|
$("#timeline_options_project_status"),
|
||
|
$("#timeline_options_project_types"),
|
||
|
$("#timeline_options_planning_element_responsibles"),
|
||
|
$("#timeline_options_planning_element_types"),
|
||
|
$("#timeline_options_grouping_two_selection")
|
||
|
].each(function (item) {
|
||
|
$(item).timelinesAutocomplete({ ajax: {null_element: {id: -1, name: I18n.t("js.timelines.filter.none")}} })
|
||
|
});
|
||
|
|
||
|
[
|
||
|
$("#reporting_reporting_to_project_id"),
|
||
|
$("#project_association_select_project_b_id")
|
||
|
].each(function (item) {
|
||
|
// Stuff borrowed from Core application.js Project Jump Box
|
||
|
$(item).timelinesAutocomplete({
|
||
|
multiple: false,
|
||
|
formatSelection: function (item) {
|
||
|
return item.name || item.project.name;
|
||
|
},
|
||
|
formatResult : OpenProject.Helpers.Search.formatter,
|
||
|
matcher : OpenProject.Helpers.Search.matcher,
|
||
|
query : OpenProject.Helpers.Search.projectQueryWithHierarchy(
|
||
|
jQuery.proxy(openProject, 'fetchProjects', item.attr("data-ajaxURL")),
|
||
|
20),
|
||
|
ajax: {}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
[
|
||
|
$("#timeline_options_parents"),
|
||
|
$("#timeline_options_grouping_one_selection")
|
||
|
].each(function (item) {
|
||
|
// Stuff borrowed from Core application.js Project Jump Box
|
||
|
$(item).timelinesAutocomplete({
|
||
|
formatSelection: function (item) {
|
||
|
return item.name || item.project.name;
|
||
|
},
|
||
|
formatResult : OpenProject.Helpers.Search.formatter,
|
||
|
matcher : OpenProject.Helpers.Search.matcher,
|
||
|
query : OpenProject.Helpers.Search.projectQueryWithHierarchy(
|
||
|
jQuery.proxy(openProject, 'fetchProjects'),
|
||
|
20),
|
||
|
ajax: {null_element: {id: -1, name: I18n.t("js.timelines.filter.none")}}
|
||
|
});
|
||
|
});
|
||
|
|
||
|
$("#content").find("input").each(function (index, e) {
|
||
|
e = $(e);
|
||
|
if (
|
||
|
((e.attr("type") === "text" || e.attr("type") === "hidden") && e.val() !== "" && !e.hasClass("select2-input")) ||
|
||
|
(e.attr("type") === "checkbox" && e.attr("checked"))
|
||
|
) {
|
||
|
e.closest("fieldset").removeClass('collapsed').children("div").show();
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
|