Replies: 1 comment
-
+1 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have defined 2 columns, username is not editable and the name is editable (editOnClick), like so...
Column::make('USERNAME', 'username') ->sortable() ->searchable() ->makeInputText(), Column::make('NAME', 'name') ->sortable() ->searchable() ->makeInputText() ->editOnClick(true),
Using wire elements modal, I edit the username and name and after updating I emit the 'pg:eventRefresh-default' event.
The username is refreshed while the name is not refreshed. I have to refresh the browser to see the updated name.
Is this a bug or am I doing something wrong (which might be the case most probably).
Thanks
Beta Was this translation helpful? Give feedback.
All reactions