[DE] For Bug 53934

This commit is contained in:
Julia Radzhabova 2021-11-26 14:18:23 +03:00
parent c1b8e34f9e
commit 592f1cfcd2

View file

@ -280,6 +280,9 @@ define([
this.lockedControls.push(this.txtNewValue);
this.txtNewValue.on('inputleave', function(){ me.fireEvent('editcomplete', me);});
this.txtNewValue._input.on('keydown', _.bind(this.onNewValueKeydown, this));
this.txtNewValue.cmpEl.on('focus', 'input.form-control', function() {
setTimeout(function(){me.txtNewValue._input && me.txtNewValue._input.select();}, 1);
});
this.list = new Common.UI.ListView({
el: $markup.findById('#form-list-list'),