Home > other >  How to show details from table to modal popup using angularjs
How to show details from table to modal popup using angularjs

Time:10-20

Please have a look at 3rdpage if i click the eye icon the transaction details modal popup and show the value from table behind it. i want if i first row then it shows only first row details like that. if I click 2nd row it shows sec row... HOW to??

this is my component.TS file

this is my html modal template

this is my demo project

CodePudding user response:

First there is no need to iterate transactionsData inside modal.Modal should receive only row data object .You have to pass single row data on the eventHandler of eye button click. You can refer this sample

  • Related