I want to implement a form inside a <ion-item>
. I have a list with several payment methods which is a list with items. Each item is of the type
<ion-item>
<ion-label>payment type</ion-label>
<ion-radio value="type1"></ion-radio>
</ion-item>
When the user clicks on a radio item more info for this type should be shown, e.g form for entering bank account info. My idea was to put a form into the but that did not work. It seems that it is ignored. I was not able to put more info into the <ion-item>
.
Any ideas how a can achieve the described behavior?
Thanks,
Ralf.