I cannot get a simple core-list to display its data.
DART FILE
import 'package:polymer/polymer.dart';
@CustomTag( 'core-list-demo' )
class CoreListDemoForm extends PolymerElement
{
@observable
List list;
@observable bool selectionEnabled = true;
CoreListDemoForm.created() : super.created();
void selectionMade( e )
{
print( e['detail'].activate );
}
void onReady()
{
$[ 'kore-list' ].on ['core-activate'].listen( handleListChange );
list = toObservable(
[ new Name( 'Fred', 'Tomas'),
new Name( 'Teddy', 'Clarke' ),
new Name( 'Paul', 'Taggart' )
] );
}
handleListChange()
{
print ( 'list changed' );
}
void selection( e )
{
}
}
class Name
{
@observable String first = '';
@observable String last = '';
Name( this.first, this.last );
}
HTML FILE
<!DOCTYPE html>
<link rel='import' href='../../../packages/polymer/polymer.html'>
<link href = '../../../packages/core_elements/core_list_dart.html' rel = 'import' >
<polymer-element name = 'core-list-demo'>
<template>
<div class='card'>
<h3>Core List</h3>
<hr>
<core-list-dart
id="kore-list"
data="{{list}}"
selectionEnabled="{{selectionEnabled}}"
selection="{{selection}}"
height="10"
on-core-activate = '{{ selectionMade }}'>
<template repeat if = "{{ list }}">
<div >{{ model.first }}</div>
</template>
</core-list-dart>
</div>
</template>
<script type = 'application/dart' src = 'core_list_demo.dart'></script>
</polymer-element>
I simply would like to see the name displayed and the row item data printed when the row is clicked (on-tab).
I have looked some examples but they have not helped.
Thanks
If you want the fields of your model class observable you not only need the
@observable
annotation but also theObservable
mixinYou don't need this for fields in a Polymer element class because
PolymerElement
already includesObservable
.You don't need the
repeat
on the<template>
tag for the list item.<core-list-dart>
does the reapeating. I think the main problem is theif
in the template tag though. This should be enough: