Добрый день, Попробуйте это решение для всех "<img>"... MainForm.Script -> function insertAtIndex(str, substring, index) { return str.slice(0, index) + substring + str.slice(index); } Ext.override(Ext.Component, { initComponent: function() { if (this.html && this.html.indexOf('<img src=') > -1) { let _src = this.html.match(/<img src='([^']+)'/)[1]; if (_src != '') { this.html = insertAtIndex(this.html
    • Like
    1