Home
last modified time | relevance | path

Searched refs:gantt (Results 1 – 25 of 173) sorted by relevance

1234567

/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
Ddhtmlxgantt_keyboard_navigation.js120 function setupKeyNav(gantt){ argument
121 gantt.config.keyboard_navigation = true;
122 gantt.config.keyboard_navigation_cells = false;
124 gantt.$keyboardNavigation = {};
126 gantt._compose = function(){
142 …mon/keyboard_shortcuts */ "./sources/ext/keyboard_navigation/common/keyboard_shortcuts.js")(gantt);
143 …vigation/common/eventhandler */ "./sources/ext/keyboard_navigation/common/eventhandler.js")(gantt);
144 …/common/trap_modal_focus */ "./sources/ext/keyboard_navigation/common/trap_modal_focus.js")(gantt);
145 …vigation/elements/gantt_node */ "./sources/ext/keyboard_navigation/elements/gantt_node.js")(gantt);
146 …d_navigation/elements/nav_node */ "./sources/ext/keyboard_navigation/elements/nav_node.js")(gantt);
[all …]
Ddhtmlxgantt_multiselect.js118 gantt.config.multiselect = true;
119 gantt.config.multiselect_one_level = false;
121 gantt._multiselect = {
141 this._one_level = gantt.config.multiselect_one_level;
143 this._active = gantt.config.multiselect;
152 gantt.$data.tasksStore.silent(function(){
153 var store = gantt.$data.tasksStore;
161 var last = gantt.$data.tasksStore.getSelectedId();
162 if (last && gantt.isTaskExists(last))
167 …if (id && gantt.callEvent("onBeforeTaskMultiSelect", [id, true, e]) && gantt.callEvent("onBeforeTa…
[all …]
Ddhtmlxgantt_quick_info.js118 gantt.config.quickinfo_buttons = ["icon_delete","icon_edit"];
119 gantt.config.quick_info_detached = true;
120 gantt.config.show_quick_info = true;
122 gantt.attachEvent("onTaskClick", function(id){
124 gantt.showQuickInfo(id);
133 gantt._hideQuickInfo();
137 gantt.attachEvent(events[i], hiding_function);
142 gantt.hideQuickInfo(true);
143 gantt._quick_info_box = null;
146 gantt.attachEvent("onGanttReady", clearQuickInfo);
[all …]
Ddhtmlxgantt_smart_rendering.js118 gantt.config.smart_rendering = true;
120 gantt._smart_render = {
123 var timeline = gantt.$ui.getView("timeline");
124 var grid = gantt.$ui.getView("grid");
125 var view = gantt.$layout;
133 var scrollPos = gantt.getScrollState();
143 var scroll = gantt.getScrollState();
145 scroll.y = scroll.y || gantt.getVisibleTaskCount()*gantt.config.row_height;
153 if(gantt.$keyboardNavigation && gantt.$keyboardNavigation.dispatcher.isTaskFocused(id)){
163 var y = gantt.getTaskTop(id);
[all …]
Ddhtmlxgantt_csp.js127 gantt.date.date_to_str = function(format,utc){
131 …case "%d": return utc ? gantt.date.to_fixed(date.getUTCDate()) : gantt.date.to_fixed(date.getDate(…
132 …case "%m": return utc ? gantt.date.to_fixed((date.getUTCMonth() + 1)) : gantt.date.to_fixed((date.…
135 …case "%y": return utc ? gantt.date.to_fixed(date.getUTCFullYear() % 100) : gantt.date.to_fixed(dat…
137 …case "%D": return utc ? gantt.locale.date.day_short[date.getUTCDay()] : gantt.locale.date.day_shor…
138 …case "%l": return utc ? gantt.locale.date.day_full[date.getUTCDay()] : gantt.locale.date.day_full[…
139 …case "%M": return utc ? gantt.locale.date.month_short[date.getUTCMonth()] : gantt.locale.date.mont…
140 …case "%F": return utc ? gantt.locale.date.month_full[date.getUTCMonth()] : gantt.locale.date.month…
141 …case "%h": return utc ? gantt.date.to_fixed((date.getUTCHours() + 11) % 12 + 1) : gantt.date.to_fi…
144 …case "%H": return utc ? gantt.date.to_fixed(date.getUTCHours()) : gantt.date.to_fixed(date.getHour…
[all …]
Ddhtmlxgantt_marker.js121 if(!gantt._markers) {
122 gantt._markers = gantt.createDatastore({
125 marker.id = marker.id || gantt.uid();
131 gantt.config.show_markers = true;
134 if(!gantt.config.show_markers)
140 var state = gantt.getState();
151 if(gantt.templates.marker_class)
152 css += " " + gantt.templates.marker_class(marker);
163 var start = gantt.posFromDate(marker.start_date);
165 div.style.height = Math.max(gantt.getRowTop(gantt.getVisibleTaskCount()), 0) + "px";
[all …]
Ddhtmlxgantt_undo.js125 gantt.config.undo = true;
126 gantt.config.redo = true;
131 gantt.config.undo_types = {
139 gantt.config.undo_actions = {
145 if (!gantt.ext) {
146 gantt.ext = {};
148 gantt.ext.undo = {
157 gantt.undo = gantt.ext.undo.undo;
158 gantt.redo = gantt.ext.undo.redo;
159 gantt.getUndoStack = gantt.ext.undo.getUndoStack;
[all …]
Ddhtmlxgantt_fullscreen.js131 var state = gantt.$services.getService("state");
173 var root = gantt.ext.fullscreen.getFullscreenElement();
210 var root = gantt.ext.fullscreen.getFullscreenElement();
252 gantt.event(document, "webkitfullscreenchange", onFullScreenChange);
253 gantt.event(document, "mozfullscreenchange", onFullScreenChange);
254 gantt.event(document, "MSFullscreenChange", onFullScreenChange);
256 gantt.event(document, "fullscreenChange", onFullScreenChange);
257 gantt.event(document, "fullscreenchange", onFullScreenChange);
261 if (!gantt.$container) {
279 gantt.render();
[all …]
Ddhtmlxgantt_drag_timeline.js159 x: gantt.$ui.getView(timeline.$config.scrollX).getScrollState().position,
160 y: gantt.$ui.getView(timeline.$config.scrollY).getScrollState().position
183 gantt.$ui.getView(timeline.$config.scrollX).scroll(coords.x);
184 gantt.$ui.getView(timeline.$config.scrollY).scroll(coords.y);
189 gantt.$root.classList.remove("gantt_noselect");
191 gantt.config.readonly = _this._originalReadonly;
194 gantt.config.autoscroll = _this._originAutoscroll;
196 if (gantt.config.drag_timeline) {
197 var useKey = gantt.config.drag_timeline.useKey;
205 _this._originAutoscroll = gantt.config.autoscroll;
[all …]
Ddhtmlxgantt_click_drag.js124 this._domEvents = gantt._createDomEventScope();
136 var state = gantt.$services.getService("state");
154 if (gantt.utils.dom.closest(event.target, ".gantt_task_line, .gantt_task_link")) {
202 var state = gantt.$services.getService("state");
254 if (!gantt.ext) {
255 gantt.ext = {};
264 gantt.ext.clickDrag = eventsManager;
265 gantt.attachEvent("onGanttReady", function () {
266 var config = __assign({ viewPort: gantt.$task_data }, defaultConfig);
267 if (gantt.config.click_drag) {
[all …]
Ddhtmlxgantt_tooltip.js121 gantt.config.tooltip_timeout = 30;
122 gantt.config.tooltip_offset_y = 20;
123 gantt.config.tooltip_offset_x = 10;
124 gantt.config.tooltip_hide_timeout = 30;
127 gantt.ext.tooltips = tooltipManager;
128 gantt.attachEvent("onGanttReady", function () {
130 selector: "[" + gantt.config.task_attribute + "]:not(.gantt_task_row)",
132 if (gantt.config.touch && !gantt.config.touch_tooltip) {
135 var targetTaskId = gantt.locate(event);
136 if (gantt.isTaskExists(targetTaskId)) {
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
Ddhtmlxgantt_multiselect.js13gantt.config.multiselect=!0,gantt.config.multiselect_one_level=!1,gantt._multiselect={_selected:{}…
Ddhtmlxgantt_quick_info.js13gantt.$task_data;return t&&t.offsetHeight&&t.offsetWidth?{parent:t,viewport:gantt.$task}:(t=gantt.… field
Ddhtmlxgantt_marker.js13gantt.config.show_markers)return!1;if(!t.start_date)return!1;var e=gantt.getState();if(!(+t.start_…
Ddhtmlxgantt_smart_rendering.js13gantt.config.smart_rendering=!0,gantt._smart_render={getViewPort:function(){var t=gantt.$ui.getVie…
Ddhtmlxgantt_csp.js13gantt.date.date_to_str=function(t,e){return function(a){return t.replace(/%[a-zA-Z]/g,function(t){…
Ddhtmlxgantt_undo.js13gantt.copy(n),a=t.command,i=0;i<n.commands.length;i++){var s=o.commands[i]=a.invert(o.commands[i])…
Ddhtmlxgantt_fullscreen.js13gantt.$services.getService("state").registerProvider("fullscreen",function(){return{fullscreen:n()…
Ddhtmlxgantt_drag_timeline.js13gantt.$ui.getView(t.$config.scrollX).getScrollState().position,y:gantt.$ui.getView(t.$config.scrol…
Ddhtmlxgantt_click_drag.js13gantt.config.row_height;this._el.style.height=t+"px",this._el.style.top=(Math.ceil(this._positionP…
Ddhtmlxgantt_keyboard_navigation.js.map1gantt","$keyboardNavigation","dispatcher","isActive","activeNode","globalNode","GanttNode","enable…
Ddhtmlxgantt_tooltip.js13gantt._waiAria.tooltipAttr(this._tooltipNode)),this._tooltipNode},t.prototype.setViewport=function…
Ddhtmlxgantt_multiselect.js.map1gantt","config","multiselect","multiselect_one_level","_multiselect","_selected","_one_level","_ac…
Ddhtmlxgantt_csp.js.map1gantt","date","date_to_str","format","utc","replace","a","to_fixed","getUTCDate","getDate","getUTC…
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/
Ddhtmlxgantt.js5988 module.exports = function(gantt){ argument
5990 gantt._cached_functions = {
6091 setup: function(gantt){ argument
6103 if(gantt.config.highlight_critical_path){
6110 this.wrap_methods(override_gantt, gantt);
6113 update_if_changed: function(gantt){ argument
6114 var changed = (this.critical_path_mode != gantt.config.highlight_critical_path ||
6115 this.mode !== gantt.config.optimize_render);
6117 this.critical_path_mode = gantt.config.highlight_critical_path;
6118 this.mode = gantt.config.optimize_render;
[all …]

1234567