Custom Tab Layout
Last updated
Was this helpful?
This feature is available on Beefree SDK Core plan and above. Upgrade a development application at no extra charge to explore features from higher plan tiers. Note: Usage on a development application still counts toward usage-based fees and limits.
The default tab configuration option lets the host application decide which content should be visible first in the sidebar when the editor is loaded.
In Beefree SDK v2, the default tab is the Content tab and this behavior could not be changed. It’s still the behavior that we recommend for most scenarios.
However, apps that rely heavily on pre-built custom rows, or saved row libraries, may now choose to highlight the Rows tab, using the following configuration options.
Available Options:
content
rows
settings
var beeConfig = {
uid: config.uid,
defaultTab: 'content',
...
Building upon the default tab configuration option, in Beefree SDK v3 you may also re-organize the way tabs are ordered.
Last updated
Was this helpful?
Was this helpful?
var beeConfig = {
uid: config.uid,
defaultTabsOrder: ['content', 'settings', 'rows'],
...

