Questions tagged [polymer-1.0]

User this tag for questions specific to version 1 of Google's web components library, Polymer.

Polymer 1.0 is the first production-ready release of Google's web components library, . It was released at Google I/O on May 29, 2015.

2366 questions
0
votes
0 answers

Polymer voice input element or script

I am creating a mobile application. I was wondering if it is possible to make a voice input like ok google. I found a script https://developers.google.com/web/updates/2013/01/Voice-Driven-Web-Apps-Introduction-to-the-Web-Speech-API but I've no idea…
aaron
  • 3
  • 1
0
votes
1 answer

How to focus a paper-input with Polymer 1.9.1?

I need to focus paper input in a paper dialog box. I have tried all available solution but nothing is working. this.$.homeSearch.$.input.focus(); this is my markaup
aaron
  • 3
  • 1
0
votes
1 answer

Polymer 2.0 version issue

I'm trying to a make an element that uploads an image to the server. I'm using this component. The problem is that if I use the above element with polymer 1.0, then it works like a charm but if I use it with Polymer 2.0 then some of its features…
abcd_1234
  • 165
  • 2
  • 11
0
votes
1 answer

Polymer iron-grid doesn't work when nodes create dynamically

When elements created dynamically using data binding (including those in dom-repeat and dom-if templates), iron-grid component doesn't toggle responsive classes.
Ali Seyfollahi
  • 2,662
  • 2
  • 21
  • 29
0
votes
1 answer

Sort by key desc in polymerfire with firebase-query

I am using firebase and polymer to build an app, and I have a data I got using the firebase-query element. I want to reorder the data so that it displays the new data first, so I thought I could use the sort attribute on template tag to sort it by…
0
votes
1 answer

How to place two div's one below the other in polymer app-header

How to place another div below the
My App
such that the content in second div should come below the content in first div.
aries12
  • 370
  • 2
  • 18
0
votes
1 answer

this.$. syntax giving me error when retrieving data from firebase with polymer

I am using polymer and firebase, and I wanted to retrieve data from the database once. To achieve this, I did something like this inside my custom element: ready: function(){ this.$.query.ref.once('value').then(function(snapshot) { …