
scout.form.fields.stringfield.StringField.js Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2014-2015 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
scout.StringField = function() {
scout.StringField.parent.call(this);
this._onSelectionChangingActionHandler = this._onSelectionChangingAction.bind(this);
};
scout.inherits(scout.StringField, scout.BasicField);
scout.StringField.FORMAT = {
LOWER: 'a' /* IStringField.FORMAT_LOWER */ ,
UPPER: 'A' /* IStringField.FORMAT_UPPER */
};
scout.StringField.TRIM_REGEXP = new RegExp('^(\\s*)(.*?)(\\s*)$');
/**
* @override ModelAdapter.js
*/
scout.StringField.prototype._initKeyStrokeContext = function(keyStrokeContext) {
scout.StringField.parent.prototype._initKeyStrokeContext.call(this, keyStrokeContext);
keyStrokeContext.registerKeyStroke([
new scout.StringFieldEnterKeyStroke(this),
new scout.StringFieldCtrlEnterKeyStroke(this)
]);
};
/**
* @override Widget.js
*/
scout.StringField.prototype._createKeyStrokeContext = function() {
return new scout.InputFieldKeyStrokeContext();
};
scout.StringField.prototype._render = function($parent) {
this.addContainer($parent, 'string-field');
this.addLabel();
this.addMandatoryIndicator();
var $field;
if (this.multilineText) {
var mousedownHandler = function() {
this.mouseClicked = true;
}.bind(this);
$field = $parent.makeElement('
© 2015 - 2025 Weber Informatics LLC | Privacy Policy