I have added a column(Description) in a table which is read only by default.I want to make this field editable whenever a particular row is selected(a select row column is added on the table and whenever this checkbox is selected,we need to make the Description field editable on that row)
-
310 Points
Posted 3 years ago
Irvin Waldman, Champion
-
9,016 Points
A few ideas:
1. Use a popup
2. Use edit row action
3. Use a row drawer
4. Use custom renderer and set editable based on "some" event - would need to explore
Just off the top of my head as options to consider.
1. Use a popup
2. Use edit row action
3. Use a row drawer
4. Use custom renderer and set editable based on "some" event - would need to explore
Just off the top of my head as options to consider.
Rob Hatch, Official Rep
-
44,168 Points
-
654 Points
We need to do something very similar. How can we make a field editable in the Table when the Row Mass Action checkbox is selected? Is this possible? Are there any examples out there?
In our case, the Table presents the user with all of the Services offered by a Department. The user checks the box (mass action) for each row (service) that they want to add to their Project. They would then be able to add a value to the Quantity column.
In our case, the Table presents the user with all of the Services offered by a Department. The user checks the box (mass action) for each row (service) that they want to add to their Project. They would then be able to add a value to the Quantity column.
-
654 Points
I am looking for some guidance on how #4 above might work. Could checking the Mass Action Checkbox be considered an "Action" that could trigger a renderer to make the Quantity field editable for that Row?