cherifGsoul on document-inserted-removed-can6
Update after review (compare)
cherifGsoul on theme-3.0.0-pre.5
cherifGsoul on master
Update bit-doc-html-canjs (#544… (compare)
cherifGsoul on theme-3.0.0-pre.5
Update bit-doc-html-canjs Upda… (compare)
cherifGsoul on update-api-page
cherifGsoul on master
Update API page (#5432) * Upda… (compare)
greenkeeper[bot] on core-js-3.5.0
chore(package): update core-js … (compare)
greenkeeper[bot] on can-observable-mixin-1.0.7
fix(package): update can-observ… (compare)
cherifGsoul on update-infrastructure-page
cherifGsoul on master
Update infrastructure page with… (compare)
radiochange
event in CanJS is the one I was thinking of. You can use it to listen to individual properties that are bound to chacked on different radio buttons in a group: https://canjs.com/doc/can-event-dom-radiochange.html
myVarName
property was a gettersetter and didn't update the getter correctly
const MyModel = DefineMap.extend({
seal: false
}, {
'_id': 'any',
...
'myVarName': 'any',
...
});
equal(~myVar.property, 'yes')
Workaround #1 => stores a boolean value and uses an additional variable (just ignore it):
<input type="radio" checked:bind="myVarName" name="myVarName" />
<input type="radio" checked:bind="myVarNameDUMMY" name="myVarName" />
Workaround #2 => can store any value, limited to strings only:
<input type="radio" can-value="myVarName" value="first" />
<input type="radio" can-value="myVarName" value="second" />
equal
or not
caused trouble
name
property could still be causing issues.
foo
into bar
which is observable, and then push bar
into B and C using one-way binding to-child.
bar.foo
, C will also see it because it's observing the same object.
sellsAllCatalogListings
so chances are tha I’m not using the same one on another level and that causes trouble
WARN: can-define: the definition for ok on DefineMap uses a constructor for "type". Did you mean "Type”?
WARN: can-stache-bindings: the data binding format {($value)} is deprecated. Use value:bind instead