Location: A review of cardiac cellular electrophysiology models @ 2d55d1ae86cf / dojo-presentation / js / dojo / dijit / form / SimpleTextarea.js

Author:
David Nickerson <nickerso@users.sourceforge.net>
Date:
2009-07-16 03:08:50+12:00
Desc:
typos
Permanent Source URI:
https://staging.physiomeproject.org/workspace/a1/rawfile/2d55d1ae86cfd6144a02402b9a6131de00b20601/dojo-presentation/js/dojo/dijit/form/SimpleTextarea.js

dojo.provide("dijit.form.SimpleTextarea");

dojo.require("dijit.form.TextBox");

dojo.declare("dijit.form.SimpleTextarea",
	dijit.form.TextBox,
{
	// summary:
	//		A simple textarea that degrades, and responds to
	// 		minimal LayoutContainer usage, and works with dijit.form.Form.
	//		Doesn't automatically size according to input, like Textarea.
	//
	// example:
	//	|	<textarea dojoType="dijit.form.SimpleTextarea" name="foo" value="bar" rows=30 cols=40/>
	//

	baseClass: "dijitTextArea",

	attributeMap: dojo.mixin(dojo.clone(dijit.form._FormValueWidget.prototype.attributeMap),
		{rows:"textbox", cols: "textbox"}),

	// rows: Number
	//		The number of rows of text.
	rows: "",

	// rows: Number
	//		The number of characters per line.
	cols: "",

	templatePath: null,
	templateString: "<textarea name='${name}' dojoAttachPoint='focusNode,containerNode,textbox' autocomplete='off'></textarea>",

	postMixInProperties: function(){
		if(this.srcNodeRef){
			this.value = this.srcNodeRef.value;
		}
	},

	getDisplayedValue: function(){
		return this.filter(this.textbox.value.replace(/\r/g,""));
	}
});