Most voted "emberjs" questions
SPA framework made in Javascript.
Learn more…11 questions
Sort by count of
-
2
votes1
answer152
viewsHow does Angularjs databinding and Dirty-check work?
How the Angular data-Binding works underneath the scenes and how it can update the HTML so quickly an input to the declaration with {{}} and not only in Angular, but also in other cases like…
-
2
votes2
answers90
viewsHow to leave a radiobutton marked as default on Ember
I have these two Components radio-button. I’d like to leave the Pessoa Física marked/checked as default. How do I do this in Emberjs ?. <div> <label>Pessoa Física</label>…
-
1
votes1
answer24
viewsHow to hide a Component in emberjs 2.1 equal to ng-Hide?
In the Angular there is the ng-hide and the ng-show to display and hide page elements. How to do the same in Emberjs 2.1? This is a translation of a question of mine on SOEN.…
-
0
votes1
answer72
viewsHow to hide blocks for a route when going to a sub-route
I am using Ember 2 and things are complicated for those who have no Ember experience. I have the following routes consultas\ consultas\reserva And on my router.js is like this…
-
0
votes1
answer13
viewsCan I use jQuery 2 in Emberjs 2.1?
I would like to upgrade from jQuery 1.11.3 to jQuery 2.1 within Ember 2.1. I can upgrade without major problems? Link to question on SOEN…
-
0
votes1
answer33
viewsHow to prevent Ember-data from making a request to the server
I have a route where the person can select items from a list for their account. But logging into that route sends a request GET to the server. How could prevent this from happening? Here is an…
-
0
votes1
answer112
viewsHow to call a controller function in the Emberjs component
I have a radio-button.js component, a radio-options.js controller, and the radio-options.hbs template. I need to call the optionChanged function that is the controller in the component, currently…
emberjsasked 8 years, 7 months ago Bruno Martins 3 -
0
votes2
answers56
viewsHow do you consume custom routes with Ember?
My Rails api has the user/me route that returns the current user data, written like this: #routes resources :usuarios do get :mim, on: :collection end #controller def mim render json: usuario_atual…
-
0
votes3
answers50
viewsHow to display a component only on the home screen?
Within the application.hbs I have a component called jus-hero: <header class="bg-leaf"> {{jus-hero}} </header> <main class="l-main"> {{outlet}} </main> How to render this…
emberjsasked 7 years, 9 months ago Bruno Wego 1,568 -
0
votes1
answer56
viewsHow to simulate a click on Linkedin with Selenium. Problem: dynamic id / uses Ember
Good morning, I’m trying to click the 'Show more' button in the field of skills but without any success. Xpath is dynamic, and by class also does not work. The button seems to be hidden somehow. I…
-
0
votes1
answer78
viewsHow to load JS correctly with Ember?
I’m trying to set up this template http://wrapbootstrap.com/preview/WB0048JF7 in a project with Ember, however, the main library nifty.js is not loading the element . mega-dropdown (top menu) and…