Replies: 1 comment 4 replies
-
You should be able to access any data that you have publically available from your component as it just loads the HTML into the DOM right after the table. If you had: public bool $modalOpen = false; Then in the modal: <div
x-data="{
show: @entangle('modalOpen')
}"
>
<div x-show="show">Modal content</div>
</div> Or something of the sorts. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Great work man, thanks a lot,
Just updated the package and tried to use the function :
I'm wondering how can we pass data to a specific modal from this function ?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions