It seems that the function addFieldInTextBoxForEmailTemplateItem (view/js/projeqtor.js:5756 V9.1.2) doesn't work with the normal text editor. Indeed, on line 5748, idTextBox is set to dojo.byId('template').value, but on line 5781, it tries to use setValue on idTextBox. I believe line 5748 should be var idTextBox = dojo.byId('template');
Line 5748:
var idTextBox = dojo.byId('template').value;
Line 5781:
idTextBox.setValue(newText);
Corrected line 5748:
var idTextBox = dojo.byId('template');
Hello,
thank you for finding and fixing a problem.
Your fixe it's right, it must replace on ligne 5748 in view/js/projeqtor.js:
var idTextBox = dojo.byId('template').value;
by:
var idTextBox = dojo.byId('template');
This correction will be available in V9.2.1.
I just tested the fix. It seems it should even be dijit.byId and not dojo.byId