Lines Matching refs:ev

7108 						"accessor": function (ev) {  argument
7109 if (ev.touches && ev.touches.length > 1) return null;
7110 if (ev.touches[0])
7112 target: document.elementFromPoint(ev.touches[0].clientX, ev.touches[0].clientY),
7113 pageX: ev.touches[0].pageX,
7114 pageY: ev.touches[0].pageY,
7115 clientX: ev.touches[0].clientX,
7116 clientY: ev.touches[0].clientY
7119 return ev;
7127 "accessor": function (ev) { argument
7128 if (ev.pointerType == "mouse") return null;
7129 return ev;
7138 "accessor": function (ev) { argument
7139 if (ev.pointerType == ev.MSPOINTER_TYPE_MOUSE) return null;
7140 return ev;
7617 task_time: function (start, end, ev) { argument
7618 if (gantt.isUnscheduledTask(ev) && gantt.config.show_unscheduled) {
7619 return gantt.templates.task_unscheduled_time(ev);
12562 CheckboxControl.prototype.set_value = function(node, value, ev, sns) { argument
12738 DurationControl.prototype.set_value = function(node, value, ev, config) { argument
12753 var end_date = gantt.calculateEndDate({start_date: start_date, duration: duration, task: ev});
12805 start_date = ev[mapping.start_date] || new Date();
12806 end_date = ev[mapping.end_date] || gantt.calculateEndDate({
12809 task: ev
12811 duration_val = Math.round(ev[mapping.duration]) || gantt.calculateDuration({
12814 task: ev
12823 DurationControl.prototype.get_value = function(node, ev, config) { argument
12826 var endDate = gantt.calculateEndDate({start_date: startDate, duration: duration, task: ev});
12902 ParentControl.prototype.set_value = function(node, value, ev, config) { argument
12904 tmpDom.innerHTML = _display(config, ev.id);
12909 return gantt.form_blocks.select.set_value.apply(gantt, [newOptions, value, ev, config]);
12996 RadioControl.prototype.set_value = function(node, value, ev, sns) { argument
13014 RadioControl.prototype.get_value = function(node, ev) { argument
13059 SelectControl.prototype.set_value = function(node, value, ev, sns) { argument
13208 TimeControl.prototype.set_value = function (node, value, ev, config) { argument
13216 end_date = gantt.calculateEndDate({ start_date: start_date, duration: 1, task: ev });
13228 var start_date = ev[mapping.start_date] || new Date();
13229 var end_date = ev[mapping.end_date] || gantt.calculateEndDate({
13232 task: ev
13239 TimeControl.prototype.get_value = function (node, ev, config) { argument
13779 getValue: function (ev) { argument
13780 return gantt.form_blocks[section.type].get_value.call(gantt, node, (ev || {}), section);
13782 setValue: function (value, ev) { argument
13783 return gantt.form_blocks[section.type].set_value.call(gantt, node, value, (ev || {}), section);
14594 var ev = gantt.xml._xmlNodeToJSON(xml[i], true);
14595 ev.id = "project-" + ev.id;
14596 evs.push(ev);
14600 var ev = evs[i];
14601 ev.start_date = ev.startdate || ev.est;
14602 ev.end_date = ev.enddate;
14603 ev.text = ev.name;
14604 ev.duration = ev.duration / 8;
14605 ev.open = 1;
14606 if (!ev.duration && !ev.end_date) ev.duration = 1;
14607 if (ev.predecessortasks)
14609 target: ev.id,
14610 source: ev.predecessortasks,
16945 this._touch_events(["touchmove", "touchstart", "touchend"], function (ev) { argument
16946 if (ev.touches && ev.touches.length > 1) return null;
16947 if (ev.touches[0])
16949 target: ev.target,
16950 pageX: ev.touches[0].pageX,
16951 pageY: ev.touches[0].pageY,
16952 clientX: ev.touches[0].clientX,
16953 clientY: ev.touches[0].clientY
16956 return ev;
16961 this._touch_events(["pointermove", "pointerdown", "pointerup"], function (ev) { argument
16962 if (ev.pointerType == "mouse") return null;
16963 return ev;
16964 }, function (ev) { argument
16965 return (!ev || (ev.pointerType == "mouse" ));
16968 this._touch_events(["MSPointerMove", "MSPointerDown", "MSPointerUp"], function (ev) { argument
16969 if (ev.pointerType == ev.MSPOINTER_TYPE_MOUSE) return null;
16970 return ev;
16971 }, function (ev) { argument
16972 return (!ev || ev.pointerType == ev.MSPOINTER_TYPE_MOUSE);
29405 function getRelativeEventPosition(ev, node){ argument
29410 x: ev.clientX + d.scrollLeft - d.clientLeft - box.x + node.scrollLeft,
29411 y: ev.clientY + d.scrollTop - d.clientTop - box.y + node.scrollTop
29526 z.addEvent=function(ev){ argument
29527 if (typeof (ev) == "function")
29528 return dhx_catch.push(ev)-1;