Lines Matching refs:value
241 var value = '';
244 if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
246 value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
250 var newValue = this.element.value.substr(0, lastTokenPos + 1);
251 var whitespace = this.element.value.substr(lastTokenPos + 1).match(/^\s+/);
254 this.element.value = newValue + value;
256 this.element.value = value;
313 var ret = this.element.value.substr(tokenPos + 1).replace(/^\s+/,'').replace(/\s+$/,'');
315 var ret = this.element.value;
324 var thisTokenPos = this.element.value.lastIndexOf(this.options.tokens[i]);
574 okButton.value = this.options.okText;
611 textField.value = text;
624 textArea.value = this.convertHTMLLineBreaks(text);
655 this.editField.value = transport.responseText.stripTags();
674 var value = this.editField.value;
684 parameters: this.options.callback(form, value),
696 parameters: this.options.callback(form, value),
792 optionTag.value = (e instanceof Array) ? e[0] : e;
793 if((typeof this.options.value == 'undefined') &&
794 …((e instanceof Array) ? this.element.innerHTML == e[1] : e == optionTag.value)) optionTag.selected…
795 if(this.options.value==optionTag.value) optionTag.selected = true;
805 this.options.callback = function(form, value) { argument
806 return "value=" + encodeURIComponent(value);