Top "Meteor-helper" questions

Template helpers in Meteor define values or functions that can be accessed from Meteor's logicless Spacebars templates.

How to use multiple parameters in a handlebar helper with meteor?

I am trying to create a custom helper using Meteor. Following to the doc here: https://github.com/meteor/meteor/…

javascript meteor handlebars.js meteor-helper
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: 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
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
Pass someVar+'a string' to Handlebars.js helper?

Let's say I have this Handlebars helper: Handlebars.registerHelper('someRandomHelperCreatingALink', function(passedVarAndString, url) { return '<a href="'+url+…

javascript templates meteor handlebars.js meteor-helper
How to pass parameters to template event in meteor?

How to pass values to template events Html <template name="Header"> <div class="testClass">Text1</…

javascript meteor meteor-blaze meteor-helper