Skip to content

Custom Tabs

Note

Custom Tabs ≠ Children tabs

Screenshot

Screenshot

Add

1
2
var dv = AppGiniHelper.DV;
var tab = dv.addTab("name", "title", "icon", ["field1", "field2", "..."]);

See also

Hide

1
tab.hide();

Show

1
tab.show();

Fade Out

1
tab.fadeOut();

Fade in

1
tab.fadeIn();

Change Position

Version

Since 2022/01

Custom tabs above or below remaining fields. By default, remaining fields (not added to any tab) will stay below the custom tabs. You can move the custom tabs below the remaining fields.

1
dv.getTabs().setPosition(TabPosition.Bottom);

Position

  • TabPosition.Top
  • TabPosition.Bottom

See also