Hi,
I would like to show a custom command on row with a condition on model.
Ex : mydata : [
{id:1,test:'one',showCmd:true}, // show the command
{id:2,test:'two',showCmd:false}, // hide the command
]
How can I do that with such model ?
I've tried to implement ng-if on template button command, but as I guess it is not compile each time, it doesn't do the job.
Thanks in advance for your help