本文整理汇总了Python中element.Element.update方法的典型用法代码示例。如果您正苦于以下问题:Python Element.update方法的具体用法?Python Element.update怎么用?Python Element.update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类element.Element
的用法示例。
在下文中一共展示了Element.update方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: insertComponentDescription
# 需要导入模块: from element import Element [as 别名]
# 或者: from element.Element import update [as 别名]
def insertComponentDescription(self, div):
# Description
if self.description:
description = Element('div', {
'id':self.id+'-description',
'class':self.descriptionClass
})
description.update(self.description)
div.insert(description)
return div
示例2: insertComponentTip
# 需要导入模块: from element import Element [as 别名]
# 或者: from element.Element import update [as 别名]
def insertComponentTip(self, div):
# Create the tip div if not empty
if self.tip:
tipDiv = Element('div', {
'id':self.id+'-tip',
'style':'display: none',
'class':self.tipClass,
})
tipDiv.update(self.tip)
div.insert(tipDiv)
return div
示例3: __str__
# 需要导入模块: from element import Element [as 别名]
# 或者: from element.Element import update [as 别名]
def __str__(self):
# Generate the component div
div = self.generateComponentDiv()
# Add the input tag
textArea = Element('textarea', {
'id':self.id,
'name':self.name,
'class':self.inputClass})
if self.width:
if self.width in self.widthArray.keys():
textArea.setAttribute('style', 'width: '+self.widthArray[self.width]+'')
else:
textArea.setAttribute('style', 'width: '+str(self.width)+'')
if self.height:
if self.height in self.heightArray.keys():
textArea.addToAttribute('style', 'height: '+self.heightArray[self.height]+'')
else:
textArea.addToAttribute('style', 'height: '+str(self.height)+'')
if self.style:
textArea.addToAttribute('style', self.style)
if self.disabled:
textArea.setAttribute('disabled', 'disabled')
if self.readOnly:
textArea.setAttribute('readonly', 'readonly')
if self.wrap:
textArea.setAttribute('wrap', self.wrap)
if self.initialValue:
textArea.update(self.initialValue)
div.insert(textArea)
# Add any description (optional)
div = self.insertComponentDescription(div)
# Add a tip (optional)
div = self.insertComponentTip(div)
return div.__str__()
示例4: generateComponentLabel
# 需要导入模块: from element import Element [as 别名]
# 或者: from element.Element import update [as 别名]
def generateComponentLabel(self):
if self.label == None:
return ''
label = Element('label', {
'id':self.id+'-label',
'for':self.id,
'class':self.labelClass
})
label.update(self.label)
# Add the required star to the label
if 'required' in self.validationOptions:
labelRequiredStarSpan = Element('span',
{'class':self.labelRequiredStarClass})
labelRequiredStarSpan.update(self.requiredText)
label.insert(labelRequiredStarSpan)
return label