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
var item = h5.core.data.createObservableItem({ v1: { defaultValue: 'default' }, v2: { depend: { on: 'v1', calc: function() { return this.get('v1'); } } } });
などのようなときは、item.set('v1', 'test')とするとchangeイベントでv1, v2の両方が現れてほしい。 しかしv1しか現れず、v2を含むイベントは発生しない(DataModelの仕様と異なる)
The text was updated successfully, but these errors were encountered:
hifive#206 対応しました。テストケース追加しました。
3692443
fukudayasuo
No branches or pull requests
などのようなときは、item.set('v1', 'test')とするとchangeイベントでv1, v2の両方が現れてほしい。
しかしv1しか現れず、v2を含むイベントは発生しない(DataModelの仕様と異なる)
The text was updated successfully, but these errors were encountered: