Code Monkey home page Code Monkey logo

angularjs-webapi-ef's Introduction

AngularJS-WebApi-EF

AngularJS CRUD Grid with WebApi, EF, Bootstrap, Font Awesome & Toastr

angularjs-webapi-ef's People

Contributors

jongio avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

angularjs-webapi-ef's Issues

pagination

it will be nice if the pagination branch worked ? any idea ?

Delete/Update don't work for tables with PKs that don't follow the 'id' convention.

This lets you use any naming convention for your PKs.

           $scope.deleteObject = function (object) {
                var pkField = $attrs.pkField;
                crudGridDataFactory($attrs.table).delete({ id: object[pkField] }, successCallback, errorCallback);
            };

            $scope.updateObject = function (object) {
                var pkField = $attrs.pkField;
                crudGridDataFactory($attrs.table).update({ id: object[pkField] }, object, successCallback, errorCallback);
            };

Variable out of scope

In crud-grid-directive.js, I was having a really hard time getting my lookups to work. It seems that c is getting out of scope in the loop in $scope.setLookupData. I kept getting errors because c.lookup was undefined. I tried putting everything in the loop in a closure like so:

            $scope.setLookupData = function () {
                for (var i = 0; i < $scope.columns.length; i++) {
                    (function (i) {
                        var c = $scope.columns[i];
                        if (c.lookup && !$scope.hasLookupData(c.lookup.table)) {
                            var res = crudGridDataFactory(c.lookup.table).query();
                            res.$promise
                                .then(function (data) {
                                    $scope.setIndividualLookupData(c.lookup.table, data); // c out of scope here?
                                })
                                .catch(function (data) {
                                    console.log("Error: ", data);
                                });
                        }
                    })(i);
                }
            };

Now it works perfectly. There are some other changes to how the promise is used that you may ignore or include at your discretion - I ended up making them while trying to debug the problem and thought they were good enough to keep in.

The closure idea came from StackOverflow:

http://stackoverflow.com/questions/17244614/promise-in-a-loop

Hope this is useful.

-k

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.