I'm currently implementing the Ext JS Grid component and have a list of fields with their respective data types:
ID (int)
Name (string)
Foods (List<string>)
Each user can have multiple foods, selected from a Food DataStore. Displaying this in a cell is easy with a custom renderer, but editing these foods is more complex.
My goal is to have a combo box appear for each food item when a user edits the Foods cell, populated from the Foods DataStore. Additionally, users should be able to add or delete items, requiring some form interface.
If anyone has suggestions on how to achieve this efficiently, I would greatly appreciate it. I've looked through Ext JS documentation but haven't found a suitable solution yet, as I am still quite new to it.
Any help or advice would be welcome.
Thank you,
B.J.