Interface ListPanelControl

All Superinterfaces:
AriaControlProperties, BackgroundStyleProperties, BasicBlockControl, BorderStyleProperties, ContainerControl, Control, Element, EventOwner, LayoutControl, MarginStyleProperties, MessageContainer, MessageProperties, PaddingStyleProperties, java.io.Serializable, TextStyleProperties, WebFormEventOwner
All Known Subinterfaces:
ListControl

public interface ListPanelControl
extends BasicBlockControl
List Panel Control

A container that wraps a block of controls within either an unordered list tag <ul> or an ordered list tag <ol>, can only have List Item Controls as children.

  <ul>
  .. child controls
  </ul>
  
Further documentation.
  • Method Details

    • getContainingListType

      java.lang.String getContainingListType()
      The containing list type, can be either "ordered" or "unordered".
      Since:
      V5.3
    • setContainingListType

      void setContainingListType​(java.lang.String listType)
      Sets the list type. Can be either "ordered" or "unordered".
      Since:
      V5.3
    • getListStyleType

      java.lang.String getListStyleType()
      The list style type. See setListStyleType(String) for details of supported values when setting this property.
      Since:
      V5.3
    • setListStyleType

      void setListStyleType​(java.lang.String listStyleType)
      Sets the list style type. Any valid value for the CSS list-style-type property can be used.
      Since:
      V5.3
    • getListStylePosition

      java.lang.String getListStylePosition()
      The list style position. Supported values are 'inside' and 'outside'.
      Since:
      V5.3
    • setListStylePosition

      void setListStylePosition​(java.lang.String listStylePosition)
      Sets the list style position. Supported values are 'inside' and 'outside'.
      Since:
      V5.3
    • getListStyleImage

      java.lang.String getListStyleImage()
      URL of the list item marker image.

      Further documentation.

      Since:
      V5.3
    • setListStyleImage

      void setListStyleImage​(java.lang.String listStyleImage)
      Sets the URL of the list item marker image.

      Further documentation.

      Since:
      V5.3