Posts by Alessandra • 115 points
8 posts
-
3
votes0
answers103
viewsQ: Scheduled cron message sends three times
Hi! I have a routine on a JSF+Spring 3.0.5 system that sends an email containing 4 attachments in pdfs on every 11th day at 07:01 AM to 11 addresses. My problem is that when the application is in…
-
0
votes2
answers1323
viewsA: Sort items with angular
Solved! the/ I modified my userRestController: @RequestMapping(value = "/usuario/list", method = RequestMethod.GET) public String listar() { Gson gson = new Gson(); Map<String, String>…
-
3
votes2
answers1323
viewsQ: Sort items with angular
I am working on a system that requires data pagination, but before I would like to sort the json I receive in the order of users' names. JSON is in format:…
-
1
votes1
answer1763
viewsA: Update a component that is in another form
Solved! Just add "formGeral" in the update of the "Register" dialog button: <h:form> <p:dialog id="iddialogcadastro" header="Cadastro de Motivo de Teatro" widgetVar="dialogcadastro"…
-
3
votes1
answer1763
viewsQ: Update a component that is in another form
Hello! Guys, I made a dialog that inserts fields into a list. This list fills in the values of a selectOneMenu, which is in another form: <h:form id="idFormDadosTeatro"> <p:panel…
-
1
votes2
answers604
viewsQ: Disable a p:inputText by focusing the cursor on another p:inputText
Hello! I’m having trouble getting a validation. Here’s the thing... I have a form made inside the components Primefaces 4.0 that has the fields "Cellular" and "Telephone". My intention is that the…
-
0
votes1
answer602
viewsQ: Button event in Yii Framework
I am making an application with Yii Framework that is relatively simple. First I made a view called total.php, who asks for a data inicial, data final and a button: <?php $form =…
-
0
votes0
answers37
viewsQ: No return when application goes to server
I am calling the following functions to pick up the current date and year: $mes = date("m"); $ano = date("Y"); It works when I’m in localhost, however, when I upload the application to the server I…