Unable to send data in Handlebars helpers

I’ve created helper for handlebars. When I try to send data to this helper from template, it shows me variable name as text. For example:

I’ve created helper:

Ember.Handlebars.registerHelper(‘ifinarray’, function(context, options) { alert(context); });

And called this:

{{ifinarray appointment_time}}

Rather than showing value of appointment_time, it shows “appointment_time” as string.

I’ve also tried another way like this - {{#ifinarray appointment.appointment_time}} {{/ifinarray}}

But didn’t get success.

Can any one help me on this.

Hi mukeshsingh3,

I think this Stackoverflow answer can help you.

Thanks, It was really helpful.