[DE] Change placeholder for content control
This commit is contained in:
parent
0bbd7d4d56
commit
acba0c11d1
|
@ -7,6 +7,12 @@
|
||||||
<div id="control-settings-txt-name"></div>
|
<div id="control-settings-txt-name"></div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="padding-small">
|
||||||
|
<label class="input-label"><%= scope.textPlaceholder %></label>
|
||||||
|
<div id="control-settings-txt-pholder"></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="padding-large">
|
<td class="padding-large">
|
||||||
<label class="input-label"><%= scope.textTag %></label>
|
<label class="input-label"><%= scope.textTag %></label>
|
||||||
|
|
|
@ -104,6 +104,15 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
|
||||||
value : ''
|
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({
|
this.cmbShow = new Common.UI.ComboBox({
|
||||||
el: $('#control-settings-combo-show'),
|
el: $('#control-settings-combo-show'),
|
||||||
cls: 'input-group-nr',
|
cls: 'input-group-nr',
|
||||||
|
@ -300,6 +309,9 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
|
||||||
val = props.get_Tag();
|
val = props.get_Tag();
|
||||||
this.txtTag.setValue(val ? val : '');
|
this.txtTag.setValue(val ? val : '');
|
||||||
|
|
||||||
|
val = props.get_PlaceholderText();
|
||||||
|
this.txtPlaceholder.setValue(val ? val : '');
|
||||||
|
|
||||||
val = props.get_Appearance();
|
val = props.get_Appearance();
|
||||||
(val!==null && val!==undefined) && this.cmbShow.setValue(val);
|
(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();
|
var props = new AscCommon.CContentControlPr();
|
||||||
props.put_Alias(this.txtName.getValue());
|
props.put_Alias(this.txtName.getValue());
|
||||||
props.put_Tag(this.txtTag.getValue());
|
props.put_Tag(this.txtTag.getValue());
|
||||||
|
props.put_PlaceholderText(this.txtPlaceholder.getValue());
|
||||||
props.put_Appearance(this.cmbShow.getValue());
|
props.put_Appearance(this.cmbShow.getValue());
|
||||||
|
|
||||||
if (this.isSystemColor) {
|
if (this.isSystemColor) {
|
||||||
|
@ -641,7 +654,8 @@ define([ 'text!documenteditor/main/app/template/ControlSettingsDialog.template',
|
||||||
textCheckbox: 'Check box',
|
textCheckbox: 'Check box',
|
||||||
textChecked: 'Checked symbol',
|
textChecked: 'Checked symbol',
|
||||||
textUnchecked: 'Unchecked symbol',
|
textUnchecked: 'Unchecked symbol',
|
||||||
tipChange: 'Change symbol'
|
tipChange: 'Change symbol',
|
||||||
|
textPlaceholder: 'Placeholder'
|
||||||
|
|
||||||
}, DE.Views.ControlSettingsDialog || {}))
|
}, DE.Views.ControlSettingsDialog || {}))
|
||||||
});
|
});
|
|
@ -1169,6 +1169,7 @@
|
||||||
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
|
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
|
||||||
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
|
||||||
|
"DE.Views.ControlSettingsDialog.textPlaceholder": "Placeholder",
|
||||||
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
|
||||||
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
|
||||||
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
"DE.Views.CustomColumnsDialog.textSpacing": "Spacing between columns",
|
||||||
|
|
Loading…
Reference in a new issue