I've seen the PrimeReact documentation, which mentions that "Row editing" is supported by setting the editMode="row" (you can check it out here: ).
Here is the code sample: StackBlitz Example
What I am looking for is the ability to have an edit icon next to the Name column header. When clicked, this icon should allow me to edit all names at once — In other words, I want to enable editing for all the entries in a particular column.
Does PrimeReact offer any built-in support or props for this feature? If not, what would be the best way to implement it?
Thanks in advance!