Posts by Maike Mota • 71 points
3 posts
-
2
votes2
answers462
viewsA: How to implement Angular features?
ngMaterial is a library developed for Angular to work with Material Design, it offers you the basic behaviors and components for creating interface with the concept of Material Design applied (Learn…
-
1
votes3
answers2140
viewsA: How to use Thymeleaf each?
The problem is apparently here: </input type="text" name="prices[${status.index}]. value"> Change to : <input type="text" name="prices[${status.index}]. value"> The input tag does not…
htmlanswered Maike Mota 71 -
1
votes2
answers563
viewsA: Gives success message that saved, not error message, but in the database is not saved - jsf
From what I can tell from the code, your programming logic is displaying the "saved" message without even testing whether this object was actually saved. Probably you are forgetting to handle the…