I often display text data on the web page that I need to change.
Currently, I write a custom mouseEvent handlers to show an "edit" button pop over a div
with an observable-bound span
is moused over. If a user clicks it, I hide a span
via visible
knockoutJS binding and show a text input
to allow edit. On tab I save edit changes and show an updated span
again.
Is there a custom open-source KOJS binding that would encomprise all this functionality. I am not asking to write it for me, just point to it, since the task is very common and KO seems to have a good base to implement it elegantly.
Actually, there is something like this, and it even looks awesome.
https://github.com/brianchance/knockout-x-editable
See it in action here: http://vitalets.github.io/x-editable/demo-bs3.html
Hope to help :)