RTO_tabsList.js

Helper file documentation for RTO_tabsList.js.
Docs updated: 2025-12-17

Summary

Normalized listTabs snapshot utilities.

  • Exports: RTOTabsList
  • Depends on: RTO_form_api.js

What it is

A convenience wrapper around RTOForm.listTabs() that returns a normalized snapshot: { ok, items, byKey, ts }.

Download

Download RTO_tabsList.js

Example

<script src="../RTO_helpers/RTO_form_api.js"></script>
<script src="../RTO_helpers/RTO_tabsList.js"></script>
<script>
  RTOTabsList.requestNow().then(function(snap){
    console.log("items:", snap.items);
    console.log("byKey:", snap.byKey);
  });
</script>

Next