viewmodel icon indicating copy to clipboard operation
viewmodel copied to clipboard

MVVM for Meteor

Results 15 viewmodel issues
Sort by recently updated
recently updated
newest added

@mitar built an[ UI benchmarking tool for Meteor](https://github.com/mitar/meteor-web-rendering-framework-benchmark). It included Blaze, vanilla JS, Blaze Components, Vue and React. Blaze Components turned out to be really slow compared to plain Blaze....

Would be awesome, if ViewModel was just JavaScript instead of CoffeeScript. Depending on the targeted browsers, this might even have nice performance benefits in both execution and weight. The most...

Please keep this package update for both blaze and react. We work using blaze with your package and it's amazing. Don't discontinue with this package. Regards

Hi, i try functions onCreated, autorun but not working ``` ViewModel.share({ clock: { initialTime: new Date(), onCreated() { this.initialTime( new Date() ); console.log('onCreated:' , this.initialTime()) }, autorun(){ console.log('autorun:' , this.initialTime())...

Hi I would like to ask how can I bind element that is dynamically created using javascript? E.g. I created a textarea using summernote plugin $(element).summernote(). The element textarea does...

ViewModel validation seems to be usable only from the template by using VM bindings, like so: ``` Template.comp.viewmodel({ field: ViewModel.property.string.notBlank }); ``` ```handlebars your field has errors ``` But this...

This has to be the most absurd, far fetched edge case scenario this repository has seen so far, but here goes: 1. I have a template that gets an array...

When I have in the vm an attribute 'show' with default: true it should be true When I set it to false It should be false this scenario does not...

I stumbled into an issue where nodes that have if\unless bindings when their default value is false\true (respectively for if\unless) or binded method evaluates to false\true - they flash briefly...

I'll just paste the self-explained code below: P.S. I tried setting a new value instead of using reset(), same strange behavior. ``` Template.cartItem.viewmodel shippingPrice: undefined updateShippingPrice: -> if @ship() and...