IgniteUI / igniteui-angular-wrappers

Ignite UI Angular component extensions by Infragistics
http://igniteui.github.io/igniteui-angular-wrappers
MIT License
148 stars 30 forks source link

ig-text-editor is unaware the auto-fill happened and thus it does not send updates to the model #284

Closed norikois closed 5 years ago

norikois commented 6 years ago

Description

ig-text-editor is unaware the auto-fill happened and thus it does not send updates to the model.

Steps to reproduce

  1. Unzip the attached my-app3.zip, "npm install" and "npm start".
  2. Open IE11 or Firefox and enable its autofill functionality to store user name and password in forms.
  3. Open http://localhost:4200, type "aaa" in "User Name" and "bbb" in "Password" and click "Login".
  4. You'll see a prompt window which asks you whether or not you would like to store the user name and the password. Answer "Yes" to it.
  5. Click twice on "User Name" text box. You'll see a drop down open.
  6. Select "aaa" from the drop down. You'll see "Password" text box is automatically filled.
  7. Click "Login".

Result

In the developer tool console, you'll see "Login: [aaa][null]". This means that the property bound to the password ig-text-editor is null although the text box is filled in UI.

Expected result

In the developer tool console, you'll see "Login: [aaa][bbb]". The property bound to the password ig-text-editor has the auto-filled value.

Attachments

my-app3.zip

alexalex972 commented 6 years ago

Related to https://github.com/IgniteUI/ignite-ui/issues/1776

dkamburov commented 5 years ago

IgniteUI/ignite-ui#1776 is resolving the issue