We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to make a table using dom-repeat and there is no depth in the firebase database. My database looks like so: Types: | User: | $key: data
Problem is I want to get that "data" information populated in the table, not the firebase generated $key. Does anyone know how to do that?
If this is the data: ...$key: Unicorn ...$key: Panda ... $key: Bear
Then the table should have the following as it's contents: Type: Unicorn Type: Panda Type: Bear
Type: -LIT_K5HE_lHyyj08fw5 Type: -LIT_L2vRyd8uXOP5eTz Type: -LJ0QHOTfwNIYUwSVsvb Type: -LJ0QIELSpGKB6XYTJzg
<ul id="notes"> <template is="dom-repeat" items="[[data]]"> <li> <div class="content"> Type: [[item]]</div> <paper-button id="remove" data="[[item]]" on-click="remove">Remove</paper-button> </li> </template> </ul>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Trying to make a table using dom-repeat and there is no depth in the firebase database.
My database looks like so:
Types:
|
User:
|
$key: data
Problem is I want to get that "data" information populated in the table, not the firebase generated $key. Does anyone know how to do that?
Expected outcome
If this is the data:
...$key: Unicorn
...$key: Panda
... $key: Bear
Then the table should have the following as it's contents:
Type: Unicorn
Type: Panda
Type: Bear
Actual outcome
Type: -LIT_K5HE_lHyyj08fw5
Type: -LIT_L2vRyd8uXOP5eTz
Type: -LJ0QHOTfwNIYUwSVsvb
Type: -LJ0QIELSpGKB6XYTJzg
Code
Browsers Affected
The text was updated successfully, but these errors were encountered: