Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9242393
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:34:20+00:00 2026-06-18T08:34:20+00:00

I have a template that is iterating over an array of entities. I would

  • 0

I have a template that is iterating over an array of entities.

I would like to display a ‘delete’ button for some of these entities based on some logic and I’m just trying to understand the best way to do this.

The actual delete button would be rendered with the following markup, note that the markup includes a call to the built in action helper.:

<button class="btn btn-danger" {{action "removeEntityFunctionInController" entitity}}><i class="icon-remove icon-white"></i> Remove</button>

I’d like to replace this with

{{optionalRemoveEntityButton entity}}

I am trying to create a logicless template so I thought maybe I could create a helper like:

Ember.Handlebars.registerHelper('optionalRemoveEntityButton', function(entity, options) {
  logicForDeterminingWhetherToShowView 
  removeEntityButtonView = howDoILoadAViewProgrammatically?
  return removeEntityButtonView;
});

I don’t understand how to load the view programmatically. I’d like to use a view because this helper is not just returning some simple markup. It also includes a call to {{action}} helper.

Unless there is a better way to achieve what I’m trying to do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T08:34:21+00:00Added an answer on June 18, 2026 at 8:34 am

    I have a template that is iterating over an array of entities. I would like to display a ‘delete’ button for some of these entities based on some logic and I’m just trying to understand the best way to do this.

    This is a pretty common use case. The idea place for this kind of logic is in the controller.

    The actual delete button would be rendered with the following markup, note that the markup includes a call to the built in action helper.: <button class="btn btn-danger" {{action "removeEntityFunctionInController" entitity}}><i class="icon-remove icon-white"></i> Remove</button>

    I’d like to replace this with {{optionalRemoveEntityButton entity}}

    I’d recommend that you keep the original markup.

    Unless there is a better way to achieve what I’m trying to do?

    Keeping logic out of your templates is a good goal, but generally that does not mean building a lot of handlebars helpers. Typically you would only build a helper when you find some display logic that is being repeated in many views.

    An alternative is to use the {{#if}} helper to conditionally display the button

    {{#if showDeleteButton}}
      <button class="btn btn-danger" {{action "removeEntityFunctionInController" entitity}}><i class="icon-remove icon-white"></i> Remove</button>
    {{/if}}
    

    You’ll need to set itemController property of your ArrayController to the name of a controller (probably an ObjectController) that will wrap each individual item. Then define the showDeleteButton method on that itemController. See the Ember.ArrayController docs for detail on setting this up.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following that is iterating over an array of templateOverrides. DPGlobal.template is
I have template that looks like this: 100 template<size_t A0, size_t A1, size_t A2,
I have a ListView template that's being used in several places and I'd like
i have a simple template that i populate with some data then im trying
I have a template that displays the titles of a custom post type. I
I have a template that creates a unique identifier for each type it is
I have a Meteor template that includes the following: {{#with selected_recipe}} {{>recipe}} {{/with}} In
I have a Django template that I want to extend in multiple places. In
I have Microsoft Word template that I automated filling it's fields from my application,
i have bought a template that have built in contact form problem is that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.