Top "Meteor-blaze" questions

Blaze is the render system for Meteor

event.target is undefined in events

How can one use each input values in events? Hope my below code will explain you well. HTML: <template …

javascript meteor handlebars.js meteor-blaze meteor-helper
Meteor + Blaze - If else statement

Looking at this Using Blaze guide, it seems Blaze supports {{#if}} and {{else}} statements, but I have't seen examples of …

meteor meteor-blaze
Meteor: Access Template Helper (or variable) from another helper

How can I reference a template helper from another one? For example... Template.XXX.helpers({ reusableHelper: function() { return this.field1 * 25 / 100; //…

meteor meteor-blaze spacebars meteor-helper
Semantic-UI Float right of an elem in Segment

I have a problem with the Segments in Semantic UI. I have a dynamic list of elements where I put …

html css meteor meteor-blaze semantic-ui
How to IF NOT inside of {{ #each }} template

How can I render this Meteor Blaze Template ? I would like to use the negative of the IF, but I …

meteor meteor-blaze
Meteor: Forcing rerendering whole template after collection update with Blaze

I have a template in which the DOM is changed, and I would like to rerender the template when saving …

meteor meteor-blaze
How to get the parent template instance (of the current template)

Is there a clean way to get the parent template of the current template? Nothing is officially documented in Meteor's …

meteor meteor-blaze
Meteor template: What's the simplest way to check if a user is logged in?

I'm using Meteor's accounts-ui. Is there a way to check if the user is logged in on the template without …

meteor meteor-blaze meteor-accounts meteor-helper
how to create a global function in meteor template

How to create a function for all the templates in meteor? index.js // Some function function somefunction(){ return true; } Test1.…

meteor meteor-blaze meteor-helper
Meteor package, how to add static files

I'm creating a package and, for the client side, I need to add some static files like fonts and images. …

meteor meteor-blaze