Matthias, you need to check the docs and examples :)
The value type I use is "org.apache.myfaces.custom.fileupload.UploadedFile"
<t:inputFileUpload id="contentFileUploadInput"
value="#{editAnnouncementsPage.uploadedFile}"
storage="memory"
required="#{false}"/>
public UploadedFile getUploadedFile()
{
return null;
}
public void setUploadedFile(UploadedFile uploadedFile)
{
// your code here
}
On 12/15/05, Matthias Kahlau <[EMAIL PROTECTED]> wrote:
> Hi!
>
>
> I get a conversion error in the model update phase when using
> inputFileUpload.
>
> 1) Which data types are supported for the "value" attribute?
>
> 2) Which role playes the "accept" attribute?
>
> 3) Which role playes the "storage" attribute?
>
>
> Regards,
>
> Matthias
>
>