vitalets / angular-xeditable

Edit in place for AngularJS
http://vitalets.github.io/angular-xeditable
MIT License
1.91k stars 404 forks source link

Table Edit hidden instead of displaying Form #740

Closed ulumjoe closed 5 years ago

ulumjoe commented 5 years ago

After chrome update, x-editable now become hidden instead of displaying form. So when I click on x-editable, it hide.

After i checked on Dev Tool, it seems to overrided with User Style Agent display : none !important;

image

ckosloski commented 5 years ago

I just updated my chrome to the latest and the demo site still works. Can you provide a plunkr or jsfiddle showing your issue?

ulumjoe commented 5 years ago

Well, i tried to create at plunker or jsfiddle but it sems xeditable is not working there, in my project I have a table, inside the table I have record when user click on data, they can update it (without click button first like in demo). The selected data become hidden instead of showing form for edit.

Thx in advance.

ulumjoe commented 5 years ago

Well, it seems when we place editable-text inside tag it will become hidden my old tag : <td editable-text="user.name">{{user.name}}</td>

so I add tag inside and become this : <td><a href="#" editable-text="user.name">{{user.name}}</a></td>

It worked again.