Skip to content

Instantly share code, notes, and snippets.

@carlosmarte
Last active August 29, 2015 14:17
Show Gist options
  • Save carlosmarte/2d83072620269b0999de to your computer and use it in GitHub Desktop.
Save carlosmarte/2d83072620269b0999de to your computer and use it in GitHub Desktop.
//create binding handler name from event name
var createBindingName = function(eventName) {
return "delegated" + eventName.substr(0, 1).toUpperCase() + eventName.slice(1);
};
http://www.knockmeout.net/2011/03/guard-your-model-accept-or-cancel-edits.html
http://www.knockmeout.net/2011/08/simplifying-and-cleaning-up-views-in.html
http://www.knockmeout.net/2011/05/creating-smart-dirty-flag-in-knockoutjs.html
http://www.knockmeout.net/2012/02/revisiting-dragging-dropping-and.html
http://www.knockmeout.net/2011/07/another-look-at-custom-bindings-for.html
http://www.knockmeout.net/2011/07/another-look-at-custom-bindings-for.html
http://www.knockmeout.net/2011/04/utility-functions-in-knockoutjs.html
http://www.knockmeout.net/2014/10/knockout-cleaning-up.html
http://www.knockmeout.net/2011/06/10-things-to-know-about-knockoutjs-on.html
http://jsfiddle.net/rniemeyer/7Jynf/
http://knockoutjs.com/documentation/extenders.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment