
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
backbone.databinding
Advanced tools
The plugin implements a two-way data binding between views and models/collections.
The plugin implements a two-way data binding between views and models/collections.
Dependencies:
>= 1.1.0
>= 1.5.2
>= 2.0.3
Define the view and the model. They should be an instances of Backbone.View
/Backbone.Model
or their inheritors.
var view = new Backbone.View(), model = new Backbone.Model();
Backbone.ModelBinder
is a decorator. Just pass the view and the model into constructor of class to getting started.
var modelBinder = new Backbone.ModelBinder(view, model);
Use modelBinder.watch(binding, options)
method to define bindings between view and model. If you want to define a lot of bindings in one action use modelBinder.watch(bindings)
option.
html
<output name="html-content"></output>
modelBinder.watch('html: html-content', {
selector: '[name="html-content"]'
});
model.set('html-content', 'HTML');
<output name="html-content">HTML</output>
text
<output name="text-content"></output>
modelBinder.watch('text: text-content', {
selector: '[name="text-content"]'
});
model.set('text-content', 'Text');
<output name="text-content">Text</output>
value
<input type="text" name="text-field-value">
modelBinder.watch('value: text-field-value', {
selector: '[name="text-field-value"]'
});
model.set('text-field-value', 'Value');
<input type="text" name="text-field-value" value="Value">
<textarea name="textarea-value"></textarea>
modelBinder.watch('value: textarea-value', {
selector: '[name="textarea-value"]'
});
model.set('textarea-value', 'Text');
<textarea name="textarea-value">Text</textarea>
<select name="single-select-value">
<option value="A">Option A</option>
<option value="B">Option B</option>
<option value="C">Option C</option>
</select>
modelBinder.watch('value: single-select-value', {
selector: '[name="single-select-value"]'
});
model.set('single-select-value', 'A');
<select name="single-select-value">
<option value="A" selected>Option A</option>
<option value="B">Option B</option>
<option value="C">Option C</option>
</select>
<select name="multiple-select-value" multiple>
<option value="A">Option A</option>
<option value="B">Option B</option>
<option value="C">Option C</option>
</select>
modelBinder.watch('value: multiple-select-value', {
selector: '[name="multiple-select-value"]'
});
model.set('multiple-select-value', ['A', 'B', 'C']);
<select name="multiple-select-value" multiple>
<option value="A" selected>Option A</option>
<option value="B" selected>Option B</option>
<option value="C" selected>Option C</option>
</select>
checked
<input type="checkbox" name="single-checkbox-checked">
modelBinder.watch('checked: single-checkbox-checked', {
selector: '[name="single-checkbox-checked"]'
});
model.set('single-checkbox-checked', true);
<input type="checkbox" name="single-checkbox-checked" checked>
<input type="checkbox" name="checkbox-group-checked" value="A">
<input type="checkbox" name="checkbox-group-checked" value="B">
<input type="checkbox" name="checkbox-group-checked" value="C">
modelBinder.watch('checked: checkbox-group-checked', {
selector: '[name="checkbox-group-checked"]'
});
model.set('checkbox-group-checked', ['A', 'B', 'C']);
<input type="checkbox" name="checkbox-group-checked" value="A" checked>
<input type="checkbox" name="checkbox-group-checked" value="B" checked>
<input type="checkbox" name="checkbox-group-checked" value="C" checked>
<input type="radio" name="radio-button-checked" value="A">
<input type="radio" name="radio-button-checked" value="B">
<input type="radio" name="radio-button-checked" value="C">
modelBinder.watch('checked: radio-button-checked', {
selector: '[name="radio-button-checked"]'
});
model.set('radio-button-checked', 'A');
<input type="radio" name="radio-button-checked" value="A" checked>
<input type="radio" name="radio-button-checked" value="B">
<input type="radio" name="radio-button-checked" value="C">
visible
<button type="button" name="button-visible" hidden>Visible</button>
modelBinder.watch('visible: button-visible', {
selector: '[name="button-visible"]'
});
model.set('button-visible', true);
<button type="button" name="button-visible">Visible</button>
hidden
<button type="button" name="button-hidden">Hidden</button>
modelBinder.watch('hidden: button-hidden', {
selector: '[name="button-hidden"]'
});
model.set('button-hidden', true);
<button type="button" name="button-hidden" hidden>Hidden</button>
enabled
<button type="button" name="button-enabled" disabled>Enabled</button>
modelBinder.watch('enabled: button-enabled', {
selector: '[name="button-enabled"]'
});
model.set('button-enabled', true);
<button type="button" name="button-enabled">Enabled</button>
disabled
<button type="button" name="button-disabled">Disabled</button>
modelBinder.watch('disabled: button-disabled', {
selector: '[name="button-disabled"]'
});
model.set('button-disabled', true);
<button type="button" name="button-disabled" disabled>Disabled</button>
selector
Specify selector to find element in the view's DOM tree. Leave selector empty to bind attribute to the root element of the view.
modelBinder.watch('...', {
selector: 'div.foo' // Any jQuery selector
});
event
Specify events that you want to listen (by default equal to 'change'
).
modelBinder.watch('...', {
event: 'change input keyup' // Space separated event list
});
getter
and setter
If you want to define one-way binding you can disable getter
(view-to-model binding) or setter
(model-to-view binding).
modelBinder.watch('...', {
getter: false // In this case the model will not synchronizes with the element
});
modelBinder.watch('...', {
setter: false // In this case the element will not synchronizes with the model
});
Define the view and the collection. They should be an instances of Backbone.View
/Backbone.Collection
or their inheritors.
var view = new Backbone.View(), collection = new Backbone.Collection();
Backbone.CollectionBinder
is a decorator. Just pass the view and the collection into constructor of class to getting started. Don't forget about options.
var collectionBinder = new Backbone.CollectionBinder(view, collection, {
view: Backbone.View.extend({ ... }),
dummy: Backbone.View.extend({ ... }),
selector: '...'
});
view
It should be an instance of Backbone.View
or its inheritor. It will represent each model in collection.
dummy
It should be an instance of Backbone.View
or its inheritor. It will used in case if collection is empty and no items to be shown.
selector
If specified, views will be inserted into element corresponding this selector. If not, views will be inserted just to the root element of the view.
By default Backbone.CollectionBinder
listens four collection events: add
, remove
, reset
and sort
.
collectionBinder.listen();
If you don't want to listen some events you should use an additional options.
collectionBinder.listen({
sort: false // In this case DOM will not react on collection's sorting
});
Backbone.ModelBinder
and Backbone.CollectionBinder
could be extendeddefine
to watch
Backbone.ModelBinder
and Backbone.CollectionBinder
configures with any model/collectionchecked
bindingattr()
instead of prop()
for standard bindingstypes
to handlers
refresh
moved from view to bindersvisible
, hidden
, enabled
, disabled
bindingshidden
, enabled
, disabled
this
visible
reset
renamed to syncToCollection
binding
reset
for refreshing a list manuallysort
and reset
are privateViewCollection
is sortablereset
is publicdata
data
readers
and writers
are staticBackbone.ViewModel
classBackbone.ViewCollection
classdelegateBindings
and undelegateBindings
are publicaddBinding
renamed to binding
FAQs
The plugin implements a two-way data binding between views and models/collections.
The npm package backbone.databinding receives a total of 0 weekly downloads. As such, backbone.databinding popularity was classified as not popular.
We found that backbone.databinding demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.