I have a use case where a read-only grid displays a list of projects, with one column showing statuses such as Complete, Cancelled, Design, etc. I want to enable users to click on the status, which should then display a dropdown containing all available statuses. The user should be able to select a new status, and the update should be saved to the database accordingly.
Discussion posts and replies are publicly visible
Hello prashantk3550
I agree with Stefan, you would not want to perform the update in such a way. Instead use record actions and show a confirmation to the user that there is a change being done. If you are talking about bulk updates call this whole data in a editable grid In a record action, where you would have a dropdown to select the status and the rest would be read-only. On submit you can update all the records.