I have a many-to-many relation in a simple base that provide stock capabilities.
First table present a stock cells that have a rack
, row
, col
.
Second table present a cargo.
Third table provide many to many relation and quantity
.
Thus I have a cargo that should be placed on the stock at the single cell in the specific quantity.
The form should look like:
- on the right side a table control with all cargo’s,
- on the left side another table control with all stock cells,
- somewhere near a textfield that should be filled with quantity.
The reason why I want use a table control is an append ability. It’s very convenient to add a cargo right here and right now, then select it and that’s it.
Is it possible to do it like that?