Portal Community

How to Open the Log Detail Tab

ActionResult
Click the icon on a rowOpens Log Detail tab for that entry
Double-click anywhere on a rowOpens Log Detail tab for that entry
Right-click a row → "Expand Detail"Opens Log Detail tab for that entry

What Log Detail Shows

Implementation

// Log row expand handler
function handleExpand(log: LogEntry) {
  // Store the selected log
  store.setSelectedLog(log);

  // Make Log Detail tab visible (it's hidden by default)
  engine.setTabVisible('log-detail', true);

  // Switch to it
  engine.activateTab('log-detail');
}

// Log Detail hides itself when the user navigates away
// (onDeactivate in TabDescriptor sets isVisible back to false)
Log Detail Tab Persists Until Navigation The Log Detail tab stays visible until you navigate to any other tab, at which point it hides again (but the selected log data remains in the store until a new log is expanded or the execution clears).