Lines Matching refs:value

129 				 			var value = tmp.substring(pos + 1);
131 if (defaultStyle[key] != null && value == 'none')
133 values.push(value);
1497 …ui.insertHandler([cell], cell.value != '' && urlParams['sketch'] != '1', this.sidebar.graph.model);
1574 var createVertex = mxUtils.bind(this, function(style, w, h, value) argument
1576 …return this.editor.graph.createVertex(null, null, value || '', 0, 0, w || 120, h || 60, style, fal…
3294 var value = graph.cellEditor.textarea.innerHTML;
3297 if (value == graph.cellEditor.textarea.innerHTML)
3368 EditorUi.prototype.setScrollbars = function(value) argument
3372 graph.scrollbars = value;
3469 EditorUi.prototype.setPageVisible = function(value) argument
3482 graph.pageVisible = value;
3483 graph.pageBreaksVisible = value;
3484 graph.preferPageSize = value;
3504 graph.defaultPageVisible = value;
3644 EditorUi.prototype.setBackgroundColor = function(value) argument
3646 this.editor.graph.background = value;
3655 EditorUi.prototype.setFoldingEnabled = function(value) argument
3657 this.editor.graph.foldingEnabled = value;
3666 EditorUi.prototype.setPageFormat = function(value, ignorePageVisible) argument
3669 this.editor.graph.pageFormat = value;
3690 EditorUi.prototype.setPageScale = function(value) argument
3692 this.editor.graph.pageScale = value;
3710 EditorUi.prototype.setGridColor = function(value) argument
3712 this.editor.graph.view.gridColor = value;
4128 this.addSplitHandler(this.hsplit, true, 0, mxUtils.bind(this, function(value) argument
4130 this.hsplitPosition = value;
4150 EditorUi.prototype.setStatusText = function(value) argument
4152 this.statusContainer.innerHTML = value;
4531 blob.text().then(mxUtils.bind(this, function(value) argument
4535 var elt = this.parseHtmlData(value);
4597 blob.text().then(function(value) argument
4599 fn(value);
4928 EditorUi.prototype.showImageDialog = function(title, value, fn, ignoreExisting) argument
4932 var newValue = mxUtils.prompt(title, value);
4960 EditorUi.prototype.showLinkDialog = function(value, btnLabel, fn) argument
4962 var dlg = new LinkDialog(this, value, btnLabel, fn);