我如何以编程方式启用/禁用com.google.gwt.dom.client.SpanElement
我需要像setEnabled(boolean enabled)和isEnabled();
这样的方法SpanElement不会公开这些。
如果有人能解释我使用spanelement会很棒
<g:HTMLPanel ui:field="container">
<div class="{style.column}">
<g:CheckBox ui:field="pendingBillingCheckBox"></g:CheckBox><br clear="all" />
<span class="{baseCSS.getApplicationCSS.label}">Tech $:</span>
<span class="{baseCSS.getApplicationCSS.label}" ui:field="techCost"></span><br clear="all" />
<span class="{baseCSS.getApplicationCSS.label}">Prof $:</span>
<span class="{baseCSS.getApplicationCSS.label}" ui:field="prof"></span><br clear="all" />
<g:TextBox addStyleNames="{style.profText}"></g:TextBox>
</div>
</g:HTMLPanel>
我想启用/禁用techCost和prof UI字段
由于
答案 0 :(得分:1)
尝试:
spanElement.getStyle().setDisplay(Style.Display.NONE);