top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

In Angular.Js, How to make column editable in Table ? Is there any good plugin?

0 votes
324 views
In Angular.Js, How to make column editable in Table ? Is there any good plugin?
posted Dec 28, 2017 by Madhavi Latha

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

1 Answer

0 votes

Using Angular XEditable we can make column editable easily.

Link - https://vitalets.github.io/angular-xeditable/

Angular-xeditable is a bundle of AngularJS directives that allows you to create editable elements.
Such technique is also known as click-to-edit or edit-in-place.

answer Dec 28, 2017 by Ujjwal Mehra
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;
        } 


    }
...