当前位置: 首页>>代码示例>>Python>>正文


Python DOM.setBooleanAttribute方法代码示例

本文整理汇总了Python中pyjamas.DOM.setBooleanAttribute方法的典型用法代码示例。如果您正苦于以下问题:Python DOM.setBooleanAttribute方法的具体用法?Python DOM.setBooleanAttribute怎么用?Python DOM.setBooleanAttribute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyjamas.DOM的用法示例。


在下文中一共展示了DOM.setBooleanAttribute方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: setEnabled

# 需要导入模块: from pyjamas import DOM [as 别名]
# 或者: from pyjamas.DOM import setBooleanAttribute [as 别名]
 def setEnabled(self, enabled):
     DOM.setBooleanAttribute(self.inputElem, "disabled", not enabled)
开发者ID:certik,项目名称:pyjamas,代码行数:4,代码来源:CheckBox.py

示例2: setChecked

# 需要导入模块: from pyjamas import DOM [as 别名]
# 或者: from pyjamas.DOM import setBooleanAttribute [as 别名]
 def setChecked(self, checked):
     DOM.setBooleanAttribute(self.inputElem, "checked", checked)
     DOM.setBooleanAttribute(self.inputElem, "defaultChecked", checked)
开发者ID:certik,项目名称:pyjamas,代码行数:5,代码来源:CheckBox.py

示例3: setControls

# 需要导入模块: from pyjamas import DOM [as 别名]
# 或者: from pyjamas.DOM import setBooleanAttribute [as 别名]
 def setControls(self, controls):
     DOM.setBooleanAttribute(self.getElement(), "controls", controls)
开发者ID:nielsonsantana,项目名称:pyjs,代码行数:4,代码来源:Media.py

示例4: setMultipleSelect

# 需要导入模块: from pyjamas import DOM [as 别名]
# 或者: from pyjamas.DOM import setBooleanAttribute [as 别名]
 def setMultipleSelect(self, multiple):
     DOM.setBooleanAttribute(self.getElement(), "multiple", multiple)
开发者ID:Afey,项目名称:pyjs,代码行数:4,代码来源:ListBox.py

示例5: setReadonly

# 需要导入模块: from pyjamas import DOM [as 别名]
# 或者: from pyjamas.DOM import setBooleanAttribute [as 别名]
 def setReadonly(self, readonly):
     DOM.setBooleanAttribute(self.getElement(), "readOnly", readonly)
开发者ID:Afey,项目名称:pyjs,代码行数:4,代码来源:Focus.py

示例6: setEnabled

# 需要导入模块: from pyjamas import DOM [as 别名]
# 或者: from pyjamas.DOM import setBooleanAttribute [as 别名]
 def setEnabled(self, enabled):
     DOM.setBooleanAttribute(self.getElement(), "disabled", not enabled)
开发者ID:Afey,项目名称:pyjs,代码行数:4,代码来源:Focus.py


注:本文中的pyjamas.DOM.setBooleanAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。