What I\'m looking to do is detach some nodes using jQuery\'s detach method, update my ViewModel, attach my nodes back, and have the values be updated.
Is this possib
It's a while since you asked the question, but I have found using detach, then immediately append to some valid location in the DOM keeps all bindings working nicely. You may then detach, append to wherever you need it as your application changes state.
I use it for sections with multiple events attached, like JQUI elements, forms and the like so that I can keep one copy running around, and just append to the page I go to. eg. a Signup form, which also functions as Edit Profile.
In your case, initially appending it into a 'visibility:hidden;' node at some point that was clearly for detached elements could be reasonable.
Don Have a great day