123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- /*
- * Copyright Scand LLC http://www.scbr.com To use this component please contact
- * info@scbr.com to obtain license
- */
- /**
- * @desc: math cells
- * @param: cell - cell object
- * @type: private
- * @edition: Professional
- */
- function eXcell_math(cell) {
- try {
- this.cell = cell;
- this.grid = this.cell.parentNode.grid;
- } catch (er) {
- }
- /**
- * @desc: edit cell
- * @type: private
- * @edition: Professional
- */
- this.edit = function() {
- this.val = this.getValue();
- if ((this.cell._val.indexOf("=") == 0) && (!this.grid._mathEdit))
- return false;
- this.obj = document.createElement("TEXTAREA");
- this.obj.style.width = "100%";
- this.obj.style.height = (this.cell.offsetHeight - 4) + "px";
- this.obj.style.border = "0px";
- this.obj.style.margin = "0px";
- this.obj.style.padding = "0px";
- this.obj.style.overflow = "hidden";
- this.obj.style.fontSize = "12px";
- this.obj.style.fontFamily = "Arial";
- this.obj.wrap = "soft";
- this.obj.style.textAlign = this.cell.align;
- this.obj.onclick = function(e) {
- (e || event).cancelBubble = true
- }
- this.obj.value = this.cell._val;
- this.cell.innerHTML = "";
- this.cell.appendChild(this.obj);
- this.obj.onselectstart = function(e) {
- if (!e)
- e = event;
- e.cancelBubble = true;
- return true;
- };
- this.obj.focus()
- this.obj.focus()
- }
- /**
- * @desc: get cell value
- * @returns: cell value
- * @type: private
- * @edition: Professional
- */
- this.getValue = function() {
- // this.grid.editStop();
- if (this.grid._strangeParams[this.cell._cellIndex]) {
- var d = this.cell;
- var z = eval("new eXcell_"
- + (this.grid._strangeParams[this.cell._cellIndex]) + "(d)");
- return z.getValue();
- } else
- return this.cell.innerHTML;
- }
- /**
- * @desc: set cell value, by using calculations and specified editor
- * @param: val - new value
- * @type: private
- * @edition: Professional
- */
- this.setValueA = function(val) {
- if (this.grid._strangeParams[this.cell._cellIndex]) {
- var z = eval("new eXcell_"
- + this.grid._strangeParams[this.cell._cellIndex]
- + "(this.cell)");
- z.setValue(val);
- } else
- this.cell.innerHTML = this.grid._calcSCL(cell) || "0";
- }
- /**
- * @desc: set cell formula
- * @param: val - new value
- * @type: private
- * @edition: Professional
- */
- this.setValue = function(val) {
- this.cell._val = val;
- this.cell._code = this.grid._compileSCL(val, this.cell);
- this.setValueA(this.grid._calcSCL(cell));
- this.grid._checkSCL(this.cell);
- }
- /**
- * @desc: remove cell's editor
- * @type: private
- * @edition: Professional
- */
- this.detach = function() {
- if ((this.cell._val.indexOf("=") == 0) && (!this.grid._mathEdit))
- return false;
- this.setValue(this.obj.value);
- return this.val != this.getValue();
- }
- }
- eXcell_math.prototype = new eXcell;
- dhtmlXGridCellObject.prototype.setValueA = dhtmlXGridCellObject.prototype.setValue;
- eXcell_price.prototype.setValueA = eXcell_price.prototype.setValue;
- eXcell_dyn.prototype.setValueA = eXcell_dyn.prototype.setValue;
- eXcell_ch.prototype.setValueA = eXcell_ch.prototype.setValue;
- eXcell_ra.prototype.setValueA = eXcell_ra.prototype.setValue;
- eXcell_cp.prototype.setValueA = eXcell_cp.prototype.setValue;
- eXcell_co.prototype.setValueA = eXcell_co.prototype.setValue;
- eXcell_edn.prototype.setValueA = eXcell_edn.prototype.setValue;
- /**
- * @desc: wrapper for set value routines
- * @param: val - new value
- * @type: private
- * @edition: Professional
- */
- eXcell_math.prototype._NsetValue = function(val) {
- this.setValueA(val);
- this.grid._checkSCL(this.cell);
- }
- dhtmlXGridCellObject.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_price.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_dyn.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_ch.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_ra.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_cp.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_co.prototype.setValue = eXcell_math.prototype._NsetValue;
- eXcell_edn.prototype.setValue = eXcell_math.prototype._NsetValue;
- /**
- * @desc: check if math cell require linking
- * @param: cell - math cell
- * @type: private
- * @edition: Professional
- */
- dhtmlXGridObject.prototype._checkSCL = function(cell) {
- if (!this.math_off) {
- if (cell._SCL) {
- for (var i = 0; i < cell._SCL.length; i++)
- if (cell._SCL[i]) {
- if (this._strangeParams[cell._SCL[i]._cellIndex]) {
- var z = eval("new eXcell_"
- + this._strangeParams[cell._SCL[i]._cellIndex]
- + "(cell._SCL[i])");
- z.setValue(this._calcSCL(cell._SCL[i]));
- } else
- cell._SCL[i].innerHTML = this._calcSCL(cell._SCL[i]);
- this._checkSCL(cell._SCL[i]);
- }
- }
- if (cell.parentNode.parent_id) {
- var pRow = this.getRowById(cell.parentNode.parent_id);
- if (!pRow)
- return;
- if (pRow.childNodes[cell._cellIndex]._sumArr) {
- if (this._strangeParams[cell._cellIndex]) {
- var z = eval("new eXcell_"
- + this._strangeParams[cell._cellIndex]
- + "(pRow.childNodes[cell._cellIndex])");
- z.setValue(this._calcSCL(pRow.childNodes[cell._cellIndex]));
- } else
- pRow.childNodes[cell._cellIndex].innerHTML = this
- ._calcSCL(pRow.childNodes[cell._cellIndex]);
- this._checkSCL(pRow.childNodes[cell._cellIndex]);
- }
- }
- } else
- this.math_req = true;
- }
- /**
- * @desc: enable/disable rounding while math calculations
- * @param: digits - set hom many digits must be rounded, set 0 for disabling
- * @type: public
- * @edition: Professional
- */
- dhtmlXGridObject.prototype.setMathRound = function(digits) {
- this._roundD = digits;
- }
- /**
- * @desc: enable/disable editing of math cells
- * @param: status - true/false
- * @type: public
- * @edition: Professional
- */
- dhtmlXGridObject.prototype.enableMathEditing = function(status) {
- this._mathEdit = convertStringToBoolean(status);
- }
- /**
- * @desc: enable/disable serialization of math formulas
- * @param: status - true/false
- * @type: public
- * @edition: Professional
- */
- dhtmlXGridObject.prototype.enableMathSerialization = function(status) {
- this._mathSerialization = convertStringToBoolean(status);
- }
- /**
- * @desc: calculate value of math cell
- * @param: cell - math cell
- * @returns: cell value
- * @type: private
- * @edition: Professional
- */
- dhtmlXGridObject.prototype._calcSCL = function(cell) {
- if (!cell._code)
- return "";
- try {
- var agrid = this;
- if (!this._roundD) {
- var z = eval(cell._code);
- return z;
- } else {
- var z = eval(cell._code);
- z = z.toString().split(".");
- return (z[0] + "." + ((z[1] || "0") + "000000000").substring(0,
- this._roundD));
- }
- } catch (e) {
- return ("#SCL");
- }
- }
- dhtmlXGridObject.prototype._countTotal = function(row, cel) {
- var a = this.loadedKidsHash.get(row);
- if (!a)
- return;
- var b = 0;
- for (var i = 0; i < a.length; i++)
- b = b * 1 + this.cells3(a[i], cel).getValue() * 1;
- return b;
- }
- /**
- * @desc: compile pseudo code to correct javascript
- * @param: code - pseudo code
- * @param: cell - math cell
- * @returns: valid js code
- * @type: private
- * @edition: Professional
- */
- dhtmlXGridObject.prototype._compileSCL = function(code, cell) {
- if (!code)
- return "";
- if (code.indexOf("=") != 0) {
- this._reLink(new Array(), cell);
- return code;
- }
- code = code.replace("=", "");
- if (code.indexOf("sum") != -1) {
- code = code.replace("sum", "(agrid._countTotal('" + cell.parentNode.idd
- + "'," + cell._cellIndex + "))");
- /*
- * if (!cell.parentNode._sumArr) cell.parentNode._sumArr=new Array()
- * parentNode._sumArr[cell._cellIndex]=true;
- */
- cell.parentNode._sumArr = true;
- cell._sumArr = true;
- return code;
- }
- if (code.indexOf("[[") != -1) {
- var test = /(\[\[([^\,]*)\,([^\]]*)]\])/g;
- var agrid = this;
- var linked = new Array();
- code = code.replace(test, function($0, $1, $2, $3) {
- if ($2 == "-")
- $2 = cell.parentNode.idd;
- if ($2.indexOf("#") == 0)
- $2 = agrid.getRowId($2.replace("#", ""));
- linked[linked.length] = [$2, $3];
- return "(agrid.cells(\"" + $2 + "\"," + $3
- + ").getValue()*1)";
- });
- } else {
- var test = /c([0-9]+)/g;
- var agrid = this;
- var id = cell.parentNode.idd;
- var linked = new Array();
- code = code.replace(test, function($0, $1, $2, $3) {
- linked[linked.length] = [id, $1];
- return "(agrid.cells(\"" + id + "\"," + $1
- + ").getValue()*1)";
- });
- }
- this._reLink(linked, cell);
- return code;
- }
- /**
- * @desc: link math cells to it source cells after incorrect attempt
- * @type: private
- * @edition: Professional
- */
- dhtmlXGridObject.prototype._laterLink = function() {
- var a = window._SCL_later;
- window._SCL_later = new Array();
- window._SCL_later_timer = null;
- for (var i = 0; i < a.length; i++) {
- (a[i][2])._reLink(a[i][0], a[i][1]);
- if ((a[i][2])._strangeParams[a[i][1]._cellIndex]) {
- var z = eval("new eXcell_"
- + (a[i][2])._strangeParams[a[i][1]._cellIndex]
- + "(a[i][1])");
- z.setValue((a[i][2])._calcSCL(a[i][1]));
- } else
- a[i][1].innerHTML = (a[i][2])._calcSCL(a[i][1]);
- (a[i][2])._checkSCL(a[i][1]);
- }
- }
- /**
- * @desc: link math cells to it source cells
- * @param: ar - array of nodes for linking
- * @param: cell - math cell
- * @type: private
- * @edition: Professional
- */
- dhtmlXGridObject.prototype._reLink = function(ar, cell) {
- if (cell._alink) {
- for (var i = 0; i < cell._alink.length; i++)
- (cell._alink[i][0])._SCL[cell._alink[i][1]] = null;
- }
- cell._alink = new Array();
- for (var i = 0; i < ar.length; i++) {
- var a = this.getRowById(ar[i][0]);
- if (!a) {
- if (!window._SCL_later)
- window._SCL_later = new Array();
- window._SCL_later.grid = this;
- window._SCL_later[window._SCL_later.length] = [ar, cell, this];
- if (!window._SCL_later_timer)
- window._SCL_later_timer = window.setTimeout(this._laterLink,
- 300);
- return 0;
- }
- var b = a.childNodes[ar[i][1]];
- if (!b._SCL)
- b._SCL = new Array();
- cell._alink[i] = [b, b._SCL.length];
- b._SCL[b._SCL.length] = cell;
- }
- }
- if (_isKHTML) {
- // replace callback support for safari.
- (function() {
- var default_replace = String.prototype.replace;
- String.prototype.replace = function(search, replace) {
- // replace is not function
- if (typeof replace != "function") {
- return default_replace.apply(this, arguments)
- }
- var str = "" + this;
- var callback = replace;
- // search string is not RegExp
- if (!(search instanceof RegExp)) {
- var idx = str.indexOf(search);
- return (idx == -1 ? str : default_replace.apply(str, [search,
- callback(search, idx, str)]))
- }
- var reg = search;
- var result = [];
- var lastidx = reg.lastIndex;
- var re;
- while ((re = reg.exec(str)) != null) {
- var idx = re.index;
- var args = re.concat(idx, str);
- result.push(str.slice(lastidx, idx), callback.apply(null, args)
- .toString());
- if (!reg.global) {
- lastidx += RegExp.lastMatch.length;
- break
- } else {
- lastidx = reg.lastIndex;
- }
- }
- result.push(str.slice(lastidx));
- return result.join("")
- }
- })();
- }
|