My requirement is as follows:
==================================================
Database structures:
==================================================
Main table structure:
- Car ID (numeric)
Car ID (numeric) refers to another table (Car List table) with structure:
- Car ID (numeric)
- Car Name (text)
- Car Description (text)
==================================================
User interface (handsontable):
==================================================
Main table:
- Car Name (handsontable cell type)
- Car Price (numeric)
Car Name (handsontable cell type dropdown table):
- Car Name (text)
==================================================
Challenges:
==================================================
1. How to automatically set the related Car ID into database since we only have Car Name in the handsontable?
If we need to set the hidden Car ID column in the handsontable fot this purpose, how to set it since we are not displaying it in the handsontable?
2. When we are displaying the dropdown table (for handsontable cell type), the selection is becoming a cell-wise instead of row-wise.
In this case, I can click a Car Description and the description will go to the parent/main table instead of the related Car Name.
This will mislead the main table editing. So, can we make it to be a row-wise selection?
Cheers,
Arief