Two-Way Databinding and Reactive Dropdowns for Meteor


Summary of my bookmarked Github repositories from Mar 18th, 2015

Github repositories

  • gwendall/meteor-bindings

    Meteor Bindings is a package that offers easy two-way databinding with Blaze. Although it is no longer maintained, you can reach out to [email protected] if you wish to contribute. To use this package, simply set [data-bind] attributes on DOM elements within a template. Whenever a change occurs on a bound input, a reactive-var is dynamically created or updated with the new value in the parent template instance. The value or text of other DOM elements with the same [data-bind] attribute will be automatically updated. The package provides options to control reactive updates and methods to manually trigger DOM updates.

  • lookback/meteor-dropdowns

    The website provides information about a reactive dropdowns package for Meteor, called "lookback:dropdowns." It is described as a solid and fully customizable solution. The installation process involves adding the package from Atmosphere. The usage involves using template helpers to create dropdown triggers and dropdown content. The templates have various arguments for customization, with the "name" argument being the only required one. Additional arguments control positioning, custom classes, and other options. The website also mentions the availability of helpers, data contexts, persistent dropdowns, animations, and the API methods provided by the package. Contributions are welcomed.