• Tooltip Group

    import { Components } from "gd-sprest-bs";

    // Create the group
    let el = document.querySelector("#buttonGroup");
    let tooltipGroup = Components.TooltipGroup({
    el: el,
    buttonType: $REST.Components.ButtonTypes.Primary,
    buttons: [
    { text: "Left", onClick: function() { alert("Left button was clicked."); } },
    { text: "Middle", onClick: function() { alert("Middle button was clicked."); } },
    { text: "Right", onClick: function() { alert("Right button was clicked."); } }
    ]
    });

    Parameters

    Returns ITooltipGroup

Generated using TypeDoc