Posts by Guilherme • 181 points
3 posts
-
1
votes1
answer126
viewsA: Richfaces fileUpload does not invoke Listener
Try this other Istener: public void listener(UploadEvent event) { this.setUploadItem(event.getUploadItem()); }
-
1
votes1
answer592
viewsA: Operations with Hashmap
If this is a learning exercise (college or course) the full statement would help, the way you explained the problem is confusing. Follow some guidance: Map<String, Map<String, Integer>>…
-
3
votes1
answer1410
viewsA: Convert html page to jsf
It’s pretty clear: <div class="cl"> </div> exchange this passage for: <div class="cl"><h:outputText value=" " /></div> Investigating mistakes harder before…