Interface IListcell<I extends IAnyGroup>

    • Field Detail

      • DEFAULT

        static final IListcell<IAnyGroup> DEFAULT
        Constant for default attributes of this immutable component.
    • Method Detail

      • getWidgetClass

        default java.lang.String getWidgetClass()
        Returns the client widget class.

        Default: "zul.sel.Listcell"

        Specified by:
        getWidgetClass in interface IComponent<I extends IAnyGroup>
      • getWidth

        @Derived
        @Nullable
        default java.lang.String getWidth()
        Description copied from interface: IHtmlBasedComponent
        Returns the width of the component. If not specified, null is assumed.

        Default: null

        Specified by:
        getWidth in interface IHtmlBasedComponent<I extends IAnyGroup>
      • withWidth

        default IListcell withWidth​(@Nullable
                                    java.lang.String width)
        To control the size of Foot related components, please refer to IListbox and IListheader instead.
        Specified by:
        withWidth in interface IHtmlBasedComponent<I extends IAnyGroup>
        Parameters:
        width - The width of the component.

        Default: null

        Returns:
        A modified copy of the this object
      • withHflex

        default IListcell withHflex​(@Nullable
                                    java.lang.String hflex)
        To control the size of Foot related components, please refer to IListbox and IListheader instead.
        Specified by:
        withHflex in interface IHtmlBasedComponent<I extends IAnyGroup>
        Parameters:
        hflex - The horizontal flex hint.

        Default: null

        Returns:
        A modified copy of the this object
      • getSpan

        default int getSpan()
        Returns number of columns to span this cell. Default: 1.
      • withSpan

        IListcell<I> withSpan​(int span)
        Returns a copy of this immutable component with the specified span.

        Sets number of columns to span this cell.

        Parameters:
        span - Number of columns to span this cell.

        Default: 1.

        Returns:
        A modified copy of the this object
      • of

        static <I extends IAnyGroupIListcell<I> of​(java.lang.String label)
        Returns the instance with the given label.
        Parameters:
        label - The label that the cell holds.
      • of

        static <I extends IAnyGroupIListcell<I> of​(java.lang.String label,
                                                     java.lang.String image)
        Returns the instance with the given label and image.
        Parameters:
        label - The label that the cell holds.
        image - The image that the cell holds.
      • of

        static <I extends IAnyGroupIListcell<I> of​(java.lang.Iterable<? extends I> children)
        Returns the instance with the given any group children.
        Parameters:
        children - The children belong to any group
        See Also:
        IAnyGroup
      • of

        static <I extends IAnyGroupIListcell<I> of​(I... children)
        Returns the instance with the given any group children.
        Parameters:
        children - The children belong to any group
        See Also:
        IAnyGroup
      • ofImage

        static <I extends IAnyGroupIListcell<I> ofImage​(java.lang.String image)
        Returns the instance with the given image.
        Parameters:
        image - The image that the cell holds.
      • ofId

        static <I extends IAnyGroupIListcell<I> ofId​(java.lang.String id)
        Returns the instance with the given id.
        Parameters:
        id - The id to identify this component