top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to create a pop up using angular JS

+4 votes
376 views
How to create a pop up using angular JS
posted May 12, 2015 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

POP up's using AngularJs

enter image description here

enter image description here

enter image description here

enter image description here

answer Jan 12, 2017 by Arun Angadi
Similar Questions
+1 vote

I have a group of array in $scope.firstorder. For example:

enter image description here

Based on some condition like array contains an element Quantity. If Qunatity is zero i need to remove this array from the list of arrays.

How can I do that?

 for (index in $scope.firstorder)
    {
        var quantity = $scope.firstorder[index][0].Quantity;
        if (quantity == 0)
        {
            Remove the array element from $scope.firstOrder;
        } 


    }
...