How To Disable a Table Column Reactively With Toggle Column #10269
Unanswered
ersinkandemir9
asked this question in
Help
Replies: 2 comments 4 replies
-
Try to use ->updateStateUsing(function (Offer $record) {
//...
}) |
Beta Was this translation helpful? Give feedback.
3 replies
-
Hi, did you ever find a solution for this? 🙂 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a relation manager page where i list some records with two toggle columns of is_accepted and is_completed. What i want to achieve is that "is_completed" toggle column should be disabled unless the same record's "is_accepted" toggle is true. In my code, database changes are made but i couldn't find a way to refresh the table view to disable or enable "is_completed" reactively when the other toggle columns do updates. Is there any way to make "disabled()" function reactive? Here is my code:
Beta Was this translation helpful? Give feedback.
All reactions