angular-vs-repeat
angular-vs-repeat copied to clipboard
Virtual Scroll for AngularJS ngRepeat directive
``` if (parentScroll instanceof Window) { this.disposeScrollHandler = this.renderer.listen('window', 'resize', this.refreshHandler); } ``` should it be ``` if (parentScroll instanceof Window) { this.disposeResizeHandler = this.renderer.listen('window', 'resize', this.refreshHandler); } ```
``` {{item.id}} {{item.name}} ``` I have a table like this and I want to dynamically change the width of the elements by modifying the vsRepeat directive. (my goal is to...
The following few lines make it impossible for vs-repeat to be used for expressions like "(key, value) in rows" since the regular expression below is not designed for these cases....
Hi, I am using this plugin for scrolling data which is in divs. I am using following code to make it work but LoadData methods get called as soon as...
Weird behavior for scroll bar if I have more than one list with vs-scroll-parent="window" attribute, there is just one vs-scroll-parent="window" allowed in one page?
- Updated package.json to allow for testing and building immediately after an `npm install` - Updated everything to v1.1.8 This PR (similar to #124 and #145) seeks to address an...
I am using angular vs repeat to render 8k rows in a table. If I use vs-repeat for table head, the rendering was very slow. ` {{::row[listColumns[0].colName]}} {{::row[listColumns[1].colName]}} {{::row[listColumns[2].colName]}} {{::row[listColumns[3].colName]}}...
Hi, First of all, thank you for this lib. Great work! Is there a way to scroll to an element on load? I have a bunch of records in a...
Hi, I am using ionic 1.3.1 and angular 1.5.8. In my Html file I have code like below ``` {{contact.displayName}} {{contact.number}} ``` I have 1000 contacts in my test. I...
Hi, I've been searching for a solution to the poor performance loading of big DOMs on mobile browsers, especially in hybrid apps. I've been very enthusiastic about the angular-vs-repeat but...