Questions tagged [ember-paper]

16 questions
3
votes
1 answer

Dark mode feature, changing img src in init() does not work

In the controller I have init(){ this._super(...arguments); document.body.classList.add("darkMode"); document.getElementById('mode').src = 'assets/images/logo-white' } and in the handlebars:
1
vote
0 answers

Template Compiler Error (TemplateCompiler) in ember-paper/templates/components/paper-dialog.hbs

My ember application started showing below error while building the app (Initially it was working and without any code change, build started failing): *Template Compiler Error (TemplateCompiler) in…
Anand Gupta
  • 5,640
  • 3
  • 27
  • 37
1
vote
2 answers

How to use ember paper icons offline?

I am creating a web module with ember paper where i need to use this module offline as well, now when i use the offline mode the ember paper icons doesn't appear instead just the text appears, can anyone help me getting ember paper work offline.
1
vote
1 answer

How to get value from an array based on the user selection?

I've follow the ember-paper guide and defined the options data as below. The user is able to select any country from the options. timeZoneOptions: Object.freeze([ { groupName: "Asia",…
user10683480
1
vote
1 answer

How to disable checkbox in certain column Ember js?

May I know how can I disable the rest of the checkbox except for step 2,3 and 4? Those checkbox are link from the checkbox component. And i link the checkbox component into route at columns propertyName:"active". Below is a part of the route code.…
Kelvin
  • 119
  • 1
  • 2
  • 11
1
vote
1 answer

Ember-paper and class?

I'm working on a project made with Ember.js I'm using ember-paper addon for buttons and also Ember-intl addon to translate my application (English and French). I have a basic HTML button with this code:
1
vote
1 answer

put a HTML element over a map tile

When I was working with ember-leaflet v2.2.7, the HTML elements were displayed over the map tiles like in the picture below, but in the version 3.0.11 the map is in the front. Setting the z-index of the leaflet-container element to -1 the map is…
figuedmundo
  • 375
  • 1
  • 4
  • 15
1
vote
2 answers

How to click button from ember.js controller

When I located a DOM element via: $('md-autocomplete-wrap button')[0] which the browser console actually reveals correctly to be an HTML button, I'd like to click this button through a controller action. Nevertheless: $('md-autocomplete-wrap…
Sedrunum
  • 11
  • 3
1
vote
0 answers

Ember-paper: Cannot set property element of [object Object] which has only a getter

I am using Ember-paper 0.2 which seems to be latest stable version. i'm creating navbar learning from tutorial. whenever I add paper-button i am getting error " Cannot set property element of [object Object] which has only a getter". It looks like…
Kumar Gaurav
  • 1,287
  • 3
  • 19
  • 47
1
vote
1 answer

show hide button depending on time in ember.js

How to hide the button for 5s in ember.js This is my template activation.hbs {{#if hideResendCode}} {{#paper-button raised=true primary=true}}Resend Code{{/paper-button}} {{/if}} and this is my controller…
Girja Shanker
  • 85
  • 1
  • 10
1
vote
1 answer

sidebar layout in ember-paper not working

I'm trying to use ember-paper in my ember app but i can't float content to the right. Example What I want to achieve (from ember-paper official website) My code application.hbs {{#paper-nav-container}} {{#paper-sidenav…
intelis
  • 7,829
  • 14
  • 58
  • 102
0
votes
1 answer

Cannot filter my transactions by the current user - Ember JS

So I am trying to filter my transactions by the selectedUser. I am not using sessions for the user system, instead I use a menu that updates selectedAt and I take the last selected user this way. Now I want to show the transactions only from the…
0
votes
1 answer

How to change the URL in ember.js by checking platform?

I am new to ember.js. I want to know about changing url by checking platform. I have two web app for mobile view server and web view server which are created by ember.js and tornado webserver.They are same app but different ui for mobile and web.…
Girja Shanker
  • 85
  • 1
  • 10
0
votes
1 answer

Ember js table view

Im develop Ember js project for my university, i'm use ember paper i need to show Image 01 type list , im try to put it, i don't know how to do that, please help me to fix it, you can understand this in my images I need like this Image 01 My…
core114
  • 5,155
  • 16
  • 92
  • 189
0
votes
1 answer

[Ember.js]Pass template helpers created by template helpers as a attribute to a component in order to use it in the components template?

I am using paper-data-table which is a extension to ember-paper. Both use a technique I did not see before which I would describe as "template helpers create template helpers". Here is a simple example of the ember-paper toolbar…
n1ru4l
  • 488
  • 1
  • 10
  • 29
1
2