diff options
author | Christophe.Boulain <> | 2010-02-15 08:47:50 +0000 |
---|---|---|
committer | Christophe.Boulain <> | 2010-02-15 08:47:50 +0000 |
commit | adf8849d63b53310257d8d129c42262ede2de155 (patch) | |
tree | 32791cbb65e409fc3ccd43b8641b40fdf988e935 /framework/Web/Javascripts | |
parent | 00e8b2c1ac9463c2d108b8f534ac1d9317ae38f7 (diff) |
Fixed Issue#222 :
SingleLine TInplaceTextBox now honors the 'Columns' property
Diffstat (limited to 'framework/Web/Javascripts')
-rw-r--r-- | framework/Web/Javascripts/source/prado/activecontrols/inlineeditor.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/Web/Javascripts/source/prado/activecontrols/inlineeditor.js b/framework/Web/Javascripts/source/prado/activecontrols/inlineeditor.js index 052a18b0..4d0facc2 100644 --- a/framework/Web/Javascripts/source/prado/activecontrols/inlineeditor.js +++ b/framework/Web/Javascripts/source/prado/activecontrols/inlineeditor.js @@ -110,6 +110,8 @@ Prado.WebUI.TInPlaceTextBox = Base.extend( {
if(this.options.MaxLength > 0)
options['maxlength'] = this.options.MaxLength;
+ if(this.options.Columns > 0)
+ options['size'] = this.options.Columns;
this.editField = INPUT(options);
}
else
|