diff --git a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js index 63656eecf..248135cbc 100644 --- a/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ExternalLinksDlg.js @@ -75,7 +75,8 @@ define([ '', '', '', - '', + '', + '', '', '', '', @@ -102,6 +103,12 @@ define([ el: $('#external-links-list', this.$window), store: new Common.UI.DataViewStore(), simpleAddMode: true, + itemTemplate: _.template([ + '
', + '
<%= value %>
', + '
<%= status %>
', + '
' + ].join('')), tabindex: 1 }); @@ -186,7 +193,8 @@ define([ arr.push({ value: (links[i].asc_getSource() || '').replace(new RegExp("%20",'g')," "), idx: i, - externalRef: links[i] + externalRef: links[i], + status: '' }); } } @@ -248,7 +256,8 @@ define([ textDelete: 'Break Links', textDeleteAll: 'Break All Links', textOpen: 'Open Source', - textChange: 'Change Source' + textChange: 'Change Source', + textStatus: 'Status' }, SSE.Views.ExternalLinksDlg || {})); }); \ No newline at end of file