コード例 #1
0
ファイル: HtmlTrees.py プロジェクト: ylwb/epyk-ui
    def style(self):
        """
    Description:
    -----------

    :rtype: GrpClsList.ClassDropDown
    """
        if self._styleObj is None:
            self._styleObj = GrpClsList.ClassDropDown(self)
        return self._styleObj
コード例 #2
0
ファイル: HtmlList.py プロジェクト: ylwb/epyk-ui
    def style(self):
        """
    Description:
    -----------

    :rtype: GrpCls.ClassHtml
    """
        if self._styleObj is None:
            self._styleObj = GrpClsList.ClassItems(self)
        return self._styleObj
コード例 #3
0
    def style(self):
        """
    Description:
    -----------

    :rtype: GrpClsList.ClassSelect
    """
        if self._styleObj is None:
            self._styleObj = GrpClsList.ClassSelect(self)
        return self._styleObj
コード例 #4
0
ファイル: HtmlList.py プロジェクト: epykure/epyk-ui
    def style(self) -> GrpClsList.ClassItems:
        """
    Description:
    -----------
    Property to the CSS Style of the component.

    :rtype: GrpClsList.ClassItems
    """
        if self._styleObj is None:
            self._styleObj = GrpClsList.ClassItems(self)
        return self._styleObj
コード例 #5
0
ファイル: HtmlBsSelect.py プロジェクト: epykure/epyk-ui
    def style(self) -> GrpClsList.ClassSelect:
        """
    Description:
    -----------
    A property to the CSS style of the DOM component.
    Each component will have default CSS style but they can be overridden.

    :rtype: GrpClsList.ClassSelect
    """
        if self._styleObj is None:
            self._styleObj = GrpClsList.ClassSelect(self)
        return self._styleObj
コード例 #6
0
    def style(self) -> GrpClsList.ClassDropDown:
        """
    Description:
    -----------
    The Javascript functions defined for this component.
    Those can be specific ones for the module or generic ones from the language.

    :rtype: GrpClsList.ClassDropDown
    """
        if self._styleObj is None:
            self._styleObj = GrpClsList.ClassDropDown(self)
        return self._styleObj