Navigating between multiple lists

Hi all, loving Plumsail's product. It's so powerful!

I'm building a CRM for my company using Plumsail. We have 5 main data tables and I'd like to include a button to each at the top of each List, for easy navigation. Is this possible with Plumsail or does it require JSON coding?

Or is there a different way for users to get between lists?

Hi @Rory,

You can redirect the user to a different page using one of the approaches described in this thread.

The simplest way to achieve this is to create a button with the following code in it's On click property:

window.location.href = 'https://plumsail.com';

Don't forget to replace the URL with that of your target list.

1 Like