Daniel Nagy
Daniel Nagy
hmm... If you have 70,000+ records and you display 10 items per page then thats 7,000+ pages. At that point I think it would be best to introduce a step...
I tried using it with the `mdSelect` decretive in one of their examples but it didn't seem to work.
Hi all, in `v0.10.0` the page dropdown uses virtualization.
I think the best I can do for this one is provide a callback for select all that would allow the developer to override the default behavior and manually select...
This is a side effect of how Javascript works. When you borrow methods from objects they loose context. For example, ```javascript let foo = { bar() { console.log(this === foo);...
**TLDR:** Binding directly to the method is more flexible and leads to less developer confusion. @BrunnerLivio The reason I didn't use `&` for binding to methods is because it becomes...
You are not forced to use pagination if you do not want to. I'm not completely sure what you are requesting. Are you suggesting a lazy load type feature? Where...
This is a pretty good idea, I think I could probably check if the bottom of the table is visible in the viewport and fire off some sort of event.
There is nothing stoping you from using `md-virtual-repeat` in version **0.9.x**. ``` html {{item.id}} {{item.name}} {{item.date}} ``` and if you add the following to your style sheet ``` css table.md-table...