Posts by Lucas Barros Santos • 21 points
3 posts
-
2
votes1
answer252
viewsQ: Generic dialog on Hymeleaf
Good evening friends, Has anyone ever tried or done a generic dialogue on Hymeleaf? What I want is: Instead of writing code to confirm the deletion of a data on the screen that is something simple,…
-
0
votes2
answers201
viewsA: JSF Converter Generating Exception
Take this example @Override public Object getAsObject(FacesContext fc, UIComponent uic, String value) { if (value != null && !"".equals(value) && !(value.isEmpty())) { try {…
-
0
votes2
answers201
viewsA: JSF Converter Generating Exception
Hello, try this on. @Override public String getAsString(FacesContext fc, UIComponent uic, Object object) { if (object != null && !"".equals(object)) { return String.valueOf(((Lote)…