Skip to Main Content
Feature Request FR-4530
Product Area User Interface
Status OPEN

1 Voters

Auto select first entry for Template Components with single selection

philipp hartenfeller Public
· Jun 27 2025

Idea Summary
Template Components are great for master-detail views using single selection. Currently, they load with no default selection, leading to empty detail views.

I propose a "auto select first entry" switch. This would immediately show data in the detail views upon page load and make the selection capability more apparent to users.

Preferred Solution
Switch under “Row Selection” in the template component attributes.

This idea is open.

Comments

Comments

  • philipp hartenfeller OP 46 hours ago

    By the way: this is the JavaScript I used to achieve this behavior:

    apex.jQuery(window).on('theme42ready', () => {
        $("#TC_STATIC_ID ul > li:first").click()
    });