Re: XForms disappointed beginner
Alex Meyers <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Allan Beaufour wrote:
> On Tuesday 17 May 2005 13:46, Alex Meyers wrote:
>
>>the namespace adaption works, thank you very much
>>the styling however I can not get to work
>>
>><style type="text/css">
>> xf|*[disabled] {display: none;}
>></style>
>
>
> If that's the full style example, then you're lacking a:
> @namespace xf url("http://www.w3.org/2002/xforms");
>
Thanks, that solved it
so for Mozilla I need
<style type="text/css">
@namespace xf url("http://www.w3.org/2002/xforms");
xf|*[disabled] {display: none;}
</style>
for formsPlayer I need
<style type="text/css">
.disabled { display:none; }
</style>
hardly standard, is it :)
i need to know a lot about the client to get my XForm to display and
work proparly
Alex