I am planning to have a table in react - most likely data table which will have something like this.
Is this confirmed? | Type your comments below | Action |
---|
Select Yes or No from dropdown list | //Your comments goes here | Attach File |
So I am planning to use material UI dropdown list component for the cell where it says Select Yes or No from dropdown list and textbox for the user to type their comments to the webservice behind upload.
That Attach File is a
prime React FileUpload advanced component. So when I click on it and user hits the upload button , I want to pass the user's selection from first cell and their comments.
So I am planning to store Yes or No selection in session storage.
I am wondering, can I have their comments stored in session storage as well as they type?