Most voted "polymer" questions
Polymer is a new type of web library, built to be compatible with the Web Components specification, and designed to leverage the web platform in modern browsers.
Learn more…18 questions
Sort by count of
-
15
votes3
answers6360
viewsWhat is Google Polymer?
I saw some recent studies on foreign websites about this Google Polymer, but still not understood where it should be used, for example in a mobile application. I could not find Brazilian blogs or…
-
9
votes2
answers588
viewsWeb Components - What is the difference between Polymer and Reactjs?
With the advancement of the web, we now also have the web components. Google created and maintains a framework named Polymer, although it does not have much compatibility with several browsers. At…
-
6
votes1
answer82
viewsHow to add customElements support for Opera 12?
I’m working with customElements, but I’ve been having problems with Opera 12. So far the best I could do is use x-tags but the same of support only to the document.register and this differs a little…
-
3
votes2
answers85
viewsHow do I use the Symbol tag instead of the g tag in Iron-iconset-svg?
I am trying to define an Iron-iconset-svg using the icons with the Symbol tag instead of using the g tag and the icon is not rendered. In all documentation and references on the internet the SVG is…
-
2
votes2
answers105
viewscheckbox in dynamic matrix field
I found a code in one of the questions of the forum, follows: function criarTabela(conteudo) { var tabela = document.createElement("table"); var thead = document.createElement("thead"); var…
-
2
votes1
answer117
viewsGoogle Polymer and ANGULARJS (2016)
good afternoon. Does anyone here use Google Polymer? If ever, have some experience to tell about its possible integration with Angularjs? According to Angular itself: "A key Feature of Angularjs 2.0…
polymerasked 8 years, 4 months ago Hitch Leonardo 623 -
2
votes1
answer48
viewsHow to take the value of multiple items and change according to my if
I have a list of items (that comes from the database), I need to compare each item of one of these and if the value is 0 change the text. Below is the function I’m trying to use to change the value…
-
2
votes2
answers130
viewsFilter through the href
Well, I’m new to using Javascript and I’m having some difficulties. I have a box that has 6 links, this involved in a gift-repeat, IE, are many 'boxes' with 6 links inside. I need to check if inside…
-
1
votes1
answer112
viewsPolymer - Assign a default value to a content tag
I’m creating a polymer element with this structure:: <template> <style> ... </style> <div class="card-header" layout horizontal center> <content…
-
1
votes1
answer32
viewsPass and declare parameter (matrix) in Polymer
I need to pass the following prametro to a Polymer element: [ ["id", "nome", "idade"], [1, "matheus", 16], [2, "cristian", 16], [3, "pedro", 10], [4, "henrique", 10] ] as I declare this variable (a…
polymerasked 8 years, 7 months ago Pedro Henrique Calixto 31 -
1
votes1
answer42
viewsText editor table is not writing in the database
I have a text editor in a project, but when someone uses the table tool in the editor it doesn’t save the table to the database, it only saves the table content. And when the download is done the…
-
1
votes1
answer154
viewsBlock mouse scroll in Javascript
I made a program using Polymer and within one of the components in a specific area (the caption area of my chart) I want the scroll of the page not to work, is there any way to do this?…
-
1
votes1
answer89
viewsthis. $. id only returns Undefined
I’m using Polymer 2.x, I’m trying to do a pre-load for the page, I made a div with a load gif and I’ll take it with setTimeout... But in the script when I use this. $. load it returns Undefined.…
-
1
votes0
answers17
viewshow to access a shadowDom element using D3.js and Polymer
Good afternoon, I’m trying to make a program for denhar a graphic, but I need to delete the graphics and draw it again whenever I update. I’m using D3.js to manipulate svg and Polymer because I’m…
-
0
votes1
answer70
viewsPolymer: Observe a global variable
I want to create an element that will open a popup and display a message to the user. I want it to be accessible by any view of my system. So I created a global variable that will be responsible for…
-
0
votes1
answer74
viewsGulp-rev-all replacing the dom-module id
I am trying to versioning the Assets from my Polymer web app using Gulp-rev-all. However, Gulp-rev-all is replacing and adding hash also in the dom-module id. Ex: <dom-module…
-
0
votes1
answer21
viewsNotifications in Polymer
Good morning, I have the following code for my Reader: <link rel="import" href="../polymer/polymer-element.html"> <dom-module id="reader"> <template> <div> <button…
-
0
votes1
answer24
viewsComputed property Polymer
Greetings. My problem is this. I have a product detail page. It is accessed after clicking on a specific product on another listing page, the content is displayed through the product ID. So far so…