Polymer 要素内からカスタム イベントを発生/送信/放出したいと考えています。たとえば、「changed」などの通常の DOM イベントを「todoupdated」などのより意味のあるイベントに変換したいと考えています。
これは私が持っているHTMLです:
<polymer-element name="todo-item" extends="li" attributes="item">
<template>
<style>
label.done {
color: gray;
text-decoration: line-through;
}
</style>
<label class="checkbox {{item.doneClass}}">
<input type="checkbox" checked="{{item.done}}">
{{item.text}}
</label>
</template>
<script type="application/dart" src="todo_item.dart"></script>
</polymer-element>
チェックボックスの変更イベントをカスタム要素からもっと...便利なものとしてバブルアウトしたい。:)