Hi,I'm using two-way bound formaters, mostly for number fields - but I think I could prepare myself for change doing <my-number-editor> element and then after change update only this single implementation.
Looking forward for the decision.
Cheers,t.k
On Thursday, May 22, 2014 1:56:18 AM UTC+2, justinfagnani wrote:We're looking at some changes to Polymer Expressions, possibly including removing filters in favor of function calls.This means that expressions like {{ myList | enumerate }} would become {{ enumerate(myList) }}.It would also mean that there's no direct replacement for two-way binding capable filters (those that return Transformers). Instead for cases where you need to format a value in an input, the element should take a formatter function or transformer itself.We have a guess that there aren't many people using two-way filters, but we want to check before possibly making breaking changes.So, what say you?Thanks!-Justin
--
You received this message because you are subscribed to the Google Groups "Dart Web Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to web+uns...@dartlang.org.
Visit this group at http://groups.google.com/a/dartlang.org/group/web/.
To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/web/e75dbbf0-ac77-4339-a92c-8cb74c7b0fc5%40dartlang.org.
[...]
Me too :) We're trying to maintain pretty close compatibility with polymer.js expressions, and they are trying to simplify their implementation where they can. We'd also like them to support function/method calls, which we already do, so this might be a decent tradeoff.We'll keep you posted.
This means that expressions like {{ myList | enumerate }} would become {{ enumerate(myList) }}.
Cheers,t.k
--
You received this message because you are subscribed to the Google Groups "Dart Web Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to web+uns...@dartlang.org.
Visit this group at http://groups.google.com/a/dartlang.org/group/web/.
To view this discussion on the web visit https://groups.google.com/a/dartlang.org/d/msgid/web/9e9d6718-3705-40ee-b5f7-d65b68f50f42%40dartlang.org.
From my perspective Polymer expressions is currently the most important issue of Polymer Dart. It's around 50% of my UI dev time to fight expression quirks/bugs.Once API stabilizes it needs really solid test coverage IMHO. Hope you will give it enough love :)Can you elaborate here? Is it problems with the expression engine, or the build process / code generator?