`openUrlInNewTab` with `url` method on a TextColumn doesn't seem to open url in a new tab
I have the following code for my table
am I missing something that restricts it. Right now, the link button that shows on the table, refreshes the page and then redirects to the url on the same tab instead of a new tab
Solution:Jump to solution
You must add after
like following:
```php
->url(fn ($record) => 'https://dashboard.stripe.com/payments/')...
2 Replies