Re: Is is possible to set the width of the textbox in the upload component?
Adam FLinton <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Allan Beaufour wrote:
> On Thursday October 13 2005 17:01, Adam FLinton wrote:
>
>>Is is possible to set the width of the textbox in the upload component?
>
>
> Hmm, not really. In a perfect world you should possibly be able to target
> xforms|upload::value, but we have no support for pseudoelements yet :(
>
OK then...is it possible with via CSS? You know how you can set the size
of an Xform textarea with a css containing
textarea
{
width: 100%;
}
So what is the upload component actually emitted as (in XHTML)?
Something like:
<form name="form1"> <input name="XFormcontrolname"
type="file" /><input onclick="whatFile()"
value="Open File" type="button" /></form>
?
Adam