Setting recordUrl(null) on a table that has an EditAction among its action doesn't disable the click
I haven't had time to fully test this, but my scenario is this:
I wanted to disabled the row click, but using
->recordUrl(null)
doesn't work, UNLESS i remove the EditAction as well (the custom action doesn't seem to have any influence in all of this)
Is this an expected behaviour? I want to keep the edit action in the last column while not giving the user the option to click the whole row2 Replies
Solution
Not sure, but have you tried
->recordAction(null)
?ok, that one works, not sure why using just
recordUrl
worked fine on another table that didn't have any action but still opened the edit page when clicking it (before adding that)
Thanks!