
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
backbone-list-controller
Advanced tools
A powerful Backbone.js class that renders a collection of models as a list with infinite scrolling, sorting, filtering, and search field.
A powerful Backbone.js class that renders a collection of models as a list with infinite scrolling, sorting, filtering, and search field.
In any application dealing with a significant amount of data, displaying a list of data will be necessary. This could be for reporting, work progress, or data review. Whatever the use case, List Controller lessens the burden of generating these list.
List Controller improves DOM responsiveness by lazy loading the rows with infinite scrolling. The library also provides common list actions: sorting, filtering, and bulk actions. Filters are stored in local storage so that the application remembers the last selected filter set. In addition, multiple filters can be saved as a "preset" for quickly using later.
This library has been 3+ years in the making here at Blackstone Audio. It is used everyday in dozens of areas inside our ERP application and is constantly being improved.
List Controller relies heavliy on Dropdown.js for the list actions (sort, filter, and bulk actions).
Check out the demo and documentation to see the List Controller in action.
To use List Controller, you at least need these three things:
1) Collection
var Coll = SortableCollection.extend({})
2) List View (view for each row)
var ListView = Backbone.View.extend({
tagName: 'li',
className: 'row',
render: function(){
this.$el.html(this.model.get('label'))
return this;
}
})
3) List Controller
var Controller = ListController.extend({
el: '#demo',
listView: ListView,
// tell infinite scroll to load more when reaching the end of this list
scrollContext: '#demo .list',
initialize: function(){
var fakeData = [], i=0;
while(i++<60){ fakeData.push({id: i, label: 'Row '+i})}
this.collection = new Coll(fakeData);
}
})
var listController = new Controller();
// later... render the controller
listController.render();
FAQs
A powerful Backbone.js class that renders a collection of models as a list with infinite scrolling, sorting, filtering, and search field.
The npm package backbone-list-controller receives a total of 0 weekly downloads. As such, backbone-list-controller popularity was classified as not popular.
We found that backbone-list-controller 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.