Home
last modified time | relevance | path

Searched refs:task (Results 201 – 222 of 222) sorted by path

123456789

/plugin/yuriigantt/3rd/dhtmlxgantt/ext/
H A Ddhtmlxgantt_undo.js13task:2},e={move:1,any:0};t.commands.sort(function(t,o){if("task"===t.entity&&"task"===o.entity)ret… property in t._reorderCommands.n
H A Ddhtmlxgantt_undo.js.map1task","actionWeights","sort","a","b","parent","$index","weightA","entities","actions","methods","i…
/plugin/yuriigantt/3rd/dhtmlxgantt/locale/
H A Dlocale.js.map1 …Wed\", \"Thu\", \"Fri\", \"Sat\"]\n\t},\n\tlabels: {\n\t\tnew_task: \"New task\",\n\t\ticon_save: …
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/
H A Ddhtmlxgantt.css16 /* colors for items with inline styles assigned (task.color, link.color)*/
H A Ddhtmlxgantt.js7782 task.start_date = task.start_date || gantt._defaultTaskDate(task, gantt.getParent(task));
7993 task: task
10239 task: task
23680 if (task.color || task.progressColor || task.textColor) {
23746 var text = template(task.start_date, task.end_date, task);
25929 task: task
25942 task: task
27360 this.task = task;
27370 this.task = task;
27381 this.task = task;
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_click_drag.js443 var task = gantt.getTaskByIndex(i);
444 if (task) {
H A Ddhtmlxgantt_quick_info.js155 gantt.templates.quick_info_class = function(start, end, task){ return ""; }; argument
277 var task = gantt.getTask(id);
280 template = this.templates.quick_info_class(task.start_date, task.end_date, task);
289 var task = gantt.getTask(id);
291 if(this.isReadonly(task) !== this._quick_info_readonly){
297 this._quick_info_readonly = this.isReadonly(task);
H A Ddhtmlxgantt_smart_rendering.js152 isTaskDisplayed: function(id, task){ argument
414 taskRenderer.filters.push(function(id, task){ argument
418 return !!gantt._smart_render.isTaskDisplayed(id, task);
H A Ddhtmlxgantt_tooltip.js137 var task = gantt.getTask(targetTaskId);
138 return gantt.templates.tooltip_text(task.start_date, task.end_date, task);
H A Ddhtmlxgantt_undo.js133 task: "task" property in gantt.config.undo_types
164 if (!task) {
167 if (task.id === oldId) {
168 task.id = newId;
170 if (task.parent === oldId) {
171 task.parent = newId;
334 …this._storeEntityCommand(task, this.getInitialTask(task.id), this._undo.command.type.move, this._u…
370 var task = null;
376 tasks.push(task);
517 _this.store(task.id, gantt.config.undo_types.task);
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/skins/
H A Ddhtmlxgantt_broadway.css17 /* colors for items with inline styles assigned (task.color, link.color)*/
H A Ddhtmlxgantt_contrast_black.css16 /* colors for items with inline styles assigned (task.color, link.color)*/
H A Ddhtmlxgantt_contrast_white.css16 /* colors for items with inline styles assigned (task.color, link.color)*/
H A Ddhtmlxgantt_meadow.css16 /* colors for items with inline styles assigned (task.color, link.color)*/
H A Ddhtmlxgantt_skyblue.css16 /* colors for items with inline styles assigned (task.color, link.color)*/
51 task resizers
H A Ddhtmlxgantt_terrace.css16 /* colors for items with inline styles assigned (task.color, link.color)*/
/plugin/yuriigantt/
H A DREADME.md48 "task": 1,
77 "task": 12,
/plugin/yuriigantt/_test/Drivers/
H A Dembedded.test.php76 $this->assertEquals($database->increment->task, 12);
/plugin/yuriigantt/_test/
H A Dtest_page.txt12 "task": 12,
/plugin/yuriigantt/src/Driver/
H A DDriverInterface.php54 * @param Task $task
57 public function updateTask(Task $task); argument
66 * @param Task $task
69 public function addTask(Task $task); argument
H A DEmbedded.php238 public function updateTask(Task $task) argument
245 if ($tasks[$i]->id == $task->id) {
246 $tasks[$i] = $task;
253 return $task;
280 foreach ($tasks as &$task) {
283 $deleteLinks($task->id);
284 $task = null;
301 public function addTask(Task $task) argument
305 $task->id = $database->increment->task++;
306 $database->gantt->data[] = $task;
[all …]
/plugin/yuriigantt/src/
H A DJsonRequest.php84 $task = $this->driver->addTask(new Task($this->payload->data));
85 $responseData = ['action' => 'inserted', 'tid' => $task->id];

123456789