Ok, I'm on my way to a solution but hitting a lots of bumps on the road;
If you have something better than what's below, please let me know!
I have a model that contains a boolean, among other things; Naturally, I want to use a checkbox to allow a user to change its value;
I see is that these libraries need to programatically check or uncheck the checkboxes they drive; Either by setting the "checked" attribute or by simulating a click through $(...).trigger('click'), or whatever that works. The problem I see is that doing so won't update the model at all;
Considering I don't really want to rewrite the whole plugin as a standalone directive (why reinvent the wheel?), how can I address this issue?
Thanks