Lines Matching refs:rowId

8328     DataProcessor.prototype.setUpdated = function (rowId, state, mode) {  argument
8332 var ind = this.findRow(rowId);
8334 var existing = this.$gantt.getUserData(rowId, this.action_param);
8339 this.set_invalid(rowId, false); // clear previous error flag
8340 this.updatedRows[ind] = rowId;
8341 this.$gantt.setUserData(rowId, this.action_param, mode);
8342 if (this._in_progress[rowId]) {
8343 this._in_progress[rowId] = "wait";
8347 if (!this.is_invalid(rowId)) {
8349 this.$gantt.setUserData(rowId, this.action_param, "");
8352 this.markRow(rowId, state, mode);
8354 this.sendData(rowId);
8415 DataProcessor.prototype.checkBeforeUpdate = function (rowId) { argument
8423 DataProcessor.prototype.sendData = function (rowId) { argument
8427 if (typeof rowId === "undefined" || this._tSend) {
8430 if (this._in_progress[rowId]) {
8434 …if (!this.checkBeforeUpdate(rowId) && this.callEvent("onValidationError", [rowId, this.messages]))…
8437 this._beforeSendData(this._getRowData(rowId), rowId);
8494 this._forEachUpdatedRow(function (rowId) { argument
8495 valid = valid && this.checkBeforeUpdate(rowId);
8506 this._forEachUpdatedRow(function (rowId) { argument
8507 if (!this._in_progress[rowId]) {
8508 if (this.is_invalid(rowId)) {
8511 this._beforeSendData(this._getRowData(rowId), rowId);
8867 DataProcessor.prototype._beforeSendData = function (data, rowId) { argument
8868 if (!this.callEvent("onBeforeUpdate", [rowId, this.getState(rowId), data])) {
8871 this._sendData(data, rowId);
8922 DataProcessor.prototype._sendData = function (dataToSend, rowId) { argument
8927 …if (!this.callEvent("onBeforeDataSending", rowId ? [rowId, this.getState(rowId), dataToSend] : [nu…
8930 if (rowId) {
8931 this._in_progress[rowId] = (new Date()).valueOf();
8935 var taskState_1 = this.getState(rowId);
8940 var sid = rowId;
8941 var tid = rowId;
8951 actionPromise = this._router(ganttMode_1, taskAction, dataToSend, rowId);
8954 actionPromise = this._router[ganttMode_1](taskAction, dataToSend, rowId);
8962 actionPromise = this._router[ganttMode_1].delete(rowId);
8965 actionPromise = this._router[ganttMode_1].update(dataToSend, rowId);
8992 if (rowId) {
8993 ids.push(rowId);
9010 queryParams.url = url + ajax.urlSeparator(url) + this.serialize(data, rowId);
9017 queryParams.data = this.serialize(data, rowId);
9031 id: rowId,
9040 switch (this.getState(rowId)) {
9043 queryParams.data = this.serialize(dataToSend, rowId);
9047 url = url + (url.slice(-1) === "/" ? "" : "/") + rowId;
9051 queryParams.data = this.serialize(dataToSend, rowId);
9052 url = url + (url.slice(-1) === "/" ? "" : "/") + rowId;
9064 var rowId = updatedRows[i];
9065 if (this.$gantt.getUserData(rowId, this.action_param)) {
9066 code.call(this, rowId);
9453 gantt._row_style = function (rowId, classname) { argument
9457 if (!gantt.isTaskExists(rowId)) {
9460 var task = gantt.getTask(rowId);
9462 gantt.refreshTask(rowId);
9465 gantt._delete_task = function (rowId, node) { }; // tslint:disable-line argument