Zizzamia / ng-tasty

A tasty collection of reusable UI components for Angular, like grandma used to make. Like Table directive, WebSocket / Debounce / Throttle service, Range / Camelize / Slugify filters
MIT License
435 stars 64 forks source link

Api for updateServerSideResource #213

Open studentIvan opened 8 years ago

studentIvan commented 8 years ago

I had to use my own filters on my site before ng-tasty. After ng-tasty I had decide to save them. My demand is to call updateServerSideResource right from controller (on keyup event of my filter for example). Right now my solution is $scope.upd = updateServerSideResource right into library source code. And in my controller I do

angular.element('div[bind-resource-callback="getResource"]').scope().upd();

This is my wish :)