[DE] Change placeholder for content control

This commit is contained in:
Julia Radzhabova 2020-04-02 17:38:47 +03:00
parent 0bbd7d4d56
commit acba0c11d1
3 changed files with 22 additions and 1 deletions

View file

@ -7,6 +7,12 @@
<div id="control-settings-txt-name"></div>
</td>
</tr>
<tr>
<td class="padding-small">
<label class="input-label"><%= scope.textPlaceholder %></label>
<div id="control-settings-txt-pholder"></div>
</td>
</tr>
<tr>
<td class="padding-large">
<label class="input-label"><%= scope.textTag %></label>

View file

@ -104,6 +104,15 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
value : ''
});
this.txtPlaceholder = new Common.UI.InputField({
el : $('#control-settings-txt-pholder'),
allowBlank : true,
validateOnChange: false,
validateOnBlur: false,
style : 'width: 100%;',
value : ''
});
this.cmbShow = new Common.UI.ComboBox({
el: $('#control-settings-combo-show'),
cls: 'input-group-nr',
@ -300,6 +309,9 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
val = props.get_Tag();
this.txtTag.setValue(val ? val : '');
val = props.get_PlaceholderText();
this.txtPlaceholder.setValue(val ? val : '');
val = props.get_Appearance();
(val!==null && val!==undefined) && this.cmbShow.setValue(val);
@ -390,6 +402,7 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
var props = new AscCommon.CContentControlPr();
props.put_Alias(this.txtName.getValue());
props.put_Tag(this.txtTag.getValue());
props.put_PlaceholderText(this.txtPlaceholder.getValue());
props.put_Appearance(this.cmbShow.getValue());
if (this.isSystemColor) {
@ -641,7 +654,8 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
textCheckbox: 'Check box',
textChecked: 'Checked symbol',
textUnchecked: 'Unchecked symbol',
tipChange: 'Change symbol'
tipChange: 'Change symbol',
textPlaceholder: 'Placeholder'
}, DE.Views.ControlSettingsDialog || {}))
});

View file

@ -1169,6 +1169,7 @@
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
"DE.Views.ControlSettingsDialog.textPlaceholder": "Placeholder",
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",