Reputation: 7083
Once i rendered data from backend i want to remove element id
from the array how can i achieve that using angularjs ?
ctrl.js
$scope.array = [{
"name": "Java Class",
"id": "javaClass",
"createdBy": "shu",
"__v": 0,
"properties": [{
"label": "Java Package Name",
"type": "String",
"editable": true,
"binding": {
"type": "property",
"name": "camunda:class"
}
}],
"appliesTo": ["bpmn:ServiceTask"]
}]
Upvotes: 0
Views: 1765