Make Whole Grid Row a Clickable Link to Another View

Is there a way, in Vaadin 14, to make a whole grid row a link that when clicked opens another view?

You could use grid.addItemClickListener() to add a listener for item clicks and use UI.getCurrent().navigate("anotherView"); there.

Yes, a coworker directed me to the Accounts page of the Business App start application for an example. It does just as you say. Thanks for your response.