MCPcopy Create free account
hub / github.com/DHTMLX/scheduler / DataProcessor

Function DataProcessor

codebase/sources/dhtmlxscheduler.es.js:7911–7930  ·  view source on GitHub ↗
(serverProcessorURL)

Source from the content-addressed store, hash-verified

7909 scheduler2.setDp();
7910}
7911function DataProcessor(serverProcessorURL) {
7912 this.serverProcessor = serverProcessorURL;
7913 this.action_param = "!nativeeditor_status";
7914 this.object = null;
7915 this.updatedRows = [];
7916 this.autoUpdate = true;
7917 this.updateMode = "cell";
7918 this._tMode = "GET";
7919 this._headers = null;
7920 this._payload = null;
7921 this.post_delim = "_";
7922 this._waitMode = 0;
7923 this._in_progress = {};
7924 this._invalid = {};
7925 this.messages = [];
7926 this.styles = { updated: "font-weight:bold;", inserted: "font-weight:bold;", deleted: "text-decoration : line-through;", invalid: "background-color:FFE0E0;", invalid_cell: "border-bottom:2px solid red;", error: "color:red;", clear: "font-weight:normal;text-decoration:none;" };
7927 this.enableUTFencoding(true);
7928 makeEventable(this);
7929 return this;
7930}
7931DataProcessor.prototype = { setTransactionMode: function(mode, total) {
7932 if (typeof mode == "object") {
7933 this._tMode = mode.mode || this._tMode;

Callers

nothing calls this directly

Calls 1

makeEventableFunction · 0.70

Tested by

no test coverage detected