How to Open Full List View from Workspace

Hi Everyone,

I have created a Public Workspace for Quotations and Customers.

Currently, when I click on Quotations or Customers from the workspace, it shows the Quick List / Shortcut View (limited records with the “View List” button at the bottom).

My Requirement:
I want that when a user clicks on Quotations or Customers in the Workspace, it should directly open the full List View (standard list page with filters, sorting, etc.), instead of showing the Quick List card.

Hi @aryannitesh,

This is a common issue with Workspace shortcuts. By default, when you add a shortcut with type “DocType”, it renders a Quick List card (limited records with the “View List” button). To open the full List View directly, you need to change the shortcut type.

Solution:

Go to your Workspace in edit mode and update the shortcut configuration:

  1. Open your Workspace → Click on Edit (top-right)
  2. Click on the Quotations shortcut block
  3. In the shortcut settings, change:
    • Link Type: From DocTypeURL
    • URL: /app/quotation
  4. Repeat the same for Customers:
    • Link Type: URL
    • URL: /app/customer
  5. Save the Workspace

Now clicking on Quotations or Customers will directly open the full List View with filters, sorting, pagination — everything.

Alternative Approach (via JSON):

If you prefer editing the Workspace JSON directly, find the shortcut block and update it:

Before:

{
    "type": "shortcut",
    "link_type": "DocType",
    "link_to": "Quotation"
}

After:

{
    "type": "shortcut",
    "link_type": "URL",
    "url": "/app/quotation"
}

Why this happens:

When link_type is set to DocType, Frappe renders a Quick List widget showing the last few records as a preview card. Changing it to a direct URL bypasses this behavior and opens the standard list route instead.

Hope this helps!

This method creates a shortcut link, which I don’t need. I need this directly this.

In the same shortcut picture instead of URL put doctype and put Quotation in Link To, then put list in the DocType view

On this way . It will create a shortcut link when click on that i got the quotation.

I need when Click on the Module(Quotation) then automatic list down all the quotation.