On Wednesday, August 29, 2012 1:59:21 PM UTC-4, rochacbruno wrote:
>
> for label in form.elements('label'):
> label["_style"] = "display:none;"
>
And now in trunk:
form.elements('label', replace=None)
That will remove all labels. Actually, you might want to remove the parent
TD or DIV of each label, so instead, maybe:
form.elements('.w2p_fl', replace=None)
Anthony
--

