I'm using angular 5 and primeng version 6 for my current project. I'm trying to implement a drop down component.But I need to implement dynamic option with form on it,like the image provided.that form(drop down option) has some function on it.
I have tried this, but no luck.
<select >
<option value="1">
<form>
<label>AO Drink Bottel</label>
<label>$2.00</label>
<button>+</button>
<input>0</input>
<button>+</button>
<button>add</button>
</form>
</option>
<option value="2">
<form>
<label>AO Drink Bottel</label>
<label>$2.00</label>
<button>+</button>
<input>0</input>
<button>+</button>
<button>add</button>
</form>
</option>
<option value="3">
<form>
<label>AO Drink Bottel</label>
<label>$2.00</label>
<button>+</button>
<input>0</input>
<button>+</button>
<button>add</button>
</form>
</option>
</select>
is this possible?. any better solution for this?
Image of the dropdown