Я пытался показать метку, значением которой является имя файла, загруженного пользователем ...
Вот моя простая форма
<h:form>
<p:outputLabel value="#{indexBacking.fileName}" rendered="#{indexBacking.showLabel}" id="fileNameLabel"/>
<p:fileUpload id="uploadImage" mode="advanced"
dragDropSupport="false" required="true"
sizeLimit="5120000"
requiredMessage="Harap upload KTP anda"
allowTypes="/(\.|\/)(gif|jpeg|png|pdf)$/"
fileUploadListener="#{indexBacking.handleUpload}"
update="fileNameLabel"
auto="true"/>
</h:form>
Вот моя поддержка
public void handleUpload(FileUploadEvent event) {
showLabel = true;
System.out.println("file uploaded");
UploadedFile file = event.getFile();
fileName = file.getFileName();
}
Но каждый раз, когда я загружаю файл, ярлык не показывался ... Может кто-нибудь объяснить мне, почему?Спасибо