In my Sencha Touch FormPanel, I am looking to include a "delete" icon or button to the left of each item in the form panel's label. However, I am struggling to find a way to create a form item with two columns - one for the delete button and one for the field that the button is placed next to.
Currently, my layout looks like this:
+++++++++++++++++++++++++++++++++++
| Tab 1| Tab 2 | Tab 3 | Tab 4 | |
| Label | Input |
| Label | Input |
| Label | Input |
| Label | Input |
++++++++++++++++++++++++++++++++++++
but I want it to look like this:
+++++++++++++++++++++++++++++++++++
| Tab 1| Tab 2 | Tab 3 | Tab 4 | |
DEL | Label | Input |
DEL | Label | Input |
DEL | Label | Input |
DEL | Label | Input |
++++++++++++++++++++++++++++++++++++
If anyone has any guidance on how to achieve this desired design, please let me know. I have attempted using Panels as form items, but the buttons end up stacking vertically with the form inputs instead of aligning horizontally.