ProcFu Help
Search
⬆️

On Row Select

The On Row Select event fires when a row is selected in a Summary List screen (table, cards, etc).

This is a client-side JavaScript event and jQuery is loaded by default.

Available Variables

All variables from 3️⃣On Render are exposed, as well as:

Examples

Maybe you don’t want to allow users to select rows where the status is Completed:

if ( row_values.status == "Completed" ) {
	return "Not Allowed";
}

Or maybe you want the subsequent detail record to be shown in a modal pop-up instead of a full screen:

show_in_modal = true;

(c) 2024 ProcFu for Podio - by Globi | Join the Discussion in our Podio Workspace.