Interface BootstrapButtonStyle

All Known Subinterfaces:
AddRowButtonProperties, ButtonColumnControl, ButtonControl, ButtonControlProperties, FileUploadControl, HyperlinkControl, InitiateUploadControl, ListHyperlinkControl, PageNavigationButtonStyle

public interface BootstrapButtonStyle
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getBootstrapSize()
    The current bootstrap size
    java.lang.String getBootstrapState()
    The current bootstrap state
    java.lang.String getBootstrapStyle()
    The current bootstrap style
    void setBootstrapSize​(java.lang.String alignment)
    Sets the bootstrap size.
    void setBootstrapState​(java.lang.String alignment)
    Sets the bootstrap state.
    void setBootstrapStyle​(java.lang.String alignment)
    Sets the bootstrap style.
  • Method Details

    • getBootstrapStyle

      java.lang.String getBootstrapStyle()
      The current bootstrap style
      Since:
      V5.4
      See Also:
      setBootstrapStyle(String)
    • setBootstrapStyle

      void setBootstrapStyle​(java.lang.String alignment)
      Sets the bootstrap style.

      Possible values are (a blank string removes the current styling):

      1. Primary
      2. Secondary
      3. Success
      4. Danger
      5. Warning
      6. Info
      7. Light
      8. Dark
      9. Link
      10. Outline Primary
      11. Outline Secondary
      12. Outline Success
      13. Outline Danger
      14. Outline Warning
      15. Outline Info
      16. Outline Light
      17. Outline Dark
      Example:
       controls.BUTTON1.bootstrapStyle = "Primary";
       controls.BUTTON1.setBootstrapStyle("Secondary");
       
      Since:
      V5.4
    • getBootstrapState

      java.lang.String getBootstrapState()
      The current bootstrap state
      Since:
      V5.4
      See Also:
      setBootstrapState(String)
    • setBootstrapState

      void setBootstrapState​(java.lang.String alignment)
      Sets the bootstrap state.

      Possible values are (a blank string removes the current state): Active - appears as if it has been already clicked Disabled - appears in a disabled state Example:

       controls.BUTTON1.bootstrapState = "Active";
       controls.BUTTON1.setBootstrapState("Disabled");
       
      Since:
      V5.4
    • getBootstrapSize

      java.lang.String getBootstrapSize()
      The current bootstrap size
      Since:
      V5.4
      See Also:
      setBootstrapSize(String)
    • setBootstrapSize

      void setBootstrapSize​(java.lang.String alignment)
      Sets the bootstrap size.

      Possible values are (a blank string removes the current styling):

      1. Large
      2. Small
      Example:
       controls.BUTTON1.bootstrapSize = "Large";
       controls.BUTTON1.setBootstrapSize("Small");
       
      Since:
      V5.4