示例#1
0
文件: HtmlRadio.py 项目: ylwb/epyk-ui
    def dom(self):
        """
    Description:
    ------------
    HTML Dom object

    :rtype: JsHtmlSelect.Tick
    """
        if self._dom is None:
            self._dom = JsHtmlSelect.Radio(self, report=self._report)
        return self._dom
示例#2
0
    def dom(self) -> JsHtmlSelect.DomSelect:
        """
    Description:
    -----------
    Return all the Javascript functions defined for an HTML Component.
    Those functions will use plain javascript by default.

    :return: A Javascript Dom object

    :rtype: JsHtmlSelect.DomSelect
    """
        if self._dom is None:
            self._dom = JsHtmlSelect.DomSelect(component=self, page=self.page)
        return self._dom
示例#3
0
    def dom(self):
        """
    Description:
    -----------
    Javascript Functions

    Return all the Javascript functions defined for an HTML Component.
    Those functions will use plain javascript by default.

    Attributes:
    ----------
    :return: A Javascript Dom object

    :rtype: JsHtmlSelect.DomSelect
    """
        if self._dom is None:
            self._dom = JsHtmlSelect.DomSelect(self, report=self._report)
        return self._dom