I have table
with ng-repeat
for table rows. I want to make inline editing and validation of data from single row, but it is impossible to use for
Approaches for this problem (incremental):
(optional) Don't use a table. use nested lists and force it with css to look like a table.
Do it in the Angularish way: use a custom directive
on the table cells/rows (whatever) the directive
should watch
the cell content for changes and then run a any custom validation and logic you have.