From d184c3f647aeda1b4d85fe7c8254663c998d4464 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 18 Dec 2017 12:15:10 +0300 Subject: [PATCH] [DE] Content controls: use get/put_Alias for control title. --- apps/documenteditor/main/app/view/ControlSettingsDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/ControlSettingsDialog.js b/apps/documenteditor/main/app/view/ControlSettingsDialog.js index b15bd8389..e68d5c971 100644 --- a/apps/documenteditor/main/app/view/ControlSettingsDialog.js +++ b/apps/documenteditor/main/app/view/ControlSettingsDialog.js @@ -151,7 +151,7 @@ define([ _setDefaults: function (props) { if (props) { - var val = props.get_Id(); + var val = props.get_Alias(); this.txtName.setValue(val ? val : ''); val = props.get_Tag(); @@ -168,7 +168,7 @@ define([ var props = new AscCommon.CContentControlPr(); - props.put_Id(this.txtName.getValue()); + props.put_Alias(this.txtName.getValue()); props.put_Tag(this.txtTag.getValue());