Posts by Alexandre Santos • 162 points
10 posts
-
0
votes1
answer52
viewsA: Spring Security 4.2.1.RELEASE + SSO CAS (jasig 4.0.3)
I found the solution to the problem, when the CAS will logout the same runs a certain URL to inform to all linked systems that should kill the session. But because I’m using Spring Security, Cross…
-
0
votes1
answer52
viewsQ: Spring Security 4.2.1.RELEASE + SSO CAS (jasig 4.0.3)
I am using the CAS (Jasig) with three applications, when I log out of one of the applications I finish the session of the same and the CAS, but if I access another application that was already with…
-
1
votes2
answers28774
viewsA: How to check if a checkbox is javascript checked
You can use this function to check one or more checkboxes on your screen if they are selected or not. I don’t know if it’s the best solution, but I hope I helped. function verificarCheckBox() { var…
javascriptanswered Alexandre Santos 162 -
1
votes3
answers303
viewsA: JSF - Selecting Item from a Set
Jhow, As Tiago said above, you can use the Primefaces datatable or you can also use the JSF datatable. Follow an example below. We will have in your class "@Managedbean("user")" a list of the object…
-
4
votes2
answers612
viewsA: Access items from a stack using for
Omaths, This "for" is called "foreach", it server to go through your entire object from start to finish. You access the value of your object traveled by the "variable" you created. for ( String…
-
2
votes2
answers164
viewsA: How do I save software versioning with GIT?
You can use the https://bitbucket.org/ to keep your "Backup" of your source codes. Just create a repository and commit there! In Bitbucket you have all the necessary instructions. I hope I’ve…
-
0
votes1
answer20
viewsA: google maps movcamera
Roberto, the documentation of the Google Api is very rich. Check the link below, I believe it has everything you need. https://developers.google.com/maps/documentation/geocoding/intro#Geocoding…
-
1
votes1
answer1277
viewsA: Calculate the nearest point and plot route on Google maps
Trustow, the documentation of the Google Api is very rich. Check the link below, I believe you have everything you need.…
-
4
votes3
answers1164
viewsA: Is there a way to decrypt MD5 in php?
Jefferson MD5 is an unidirectional hash algorithm and therefore once encrypted, the data can no longer be decrypted.
-
0
votes3
answers4280
viewsA: Fill in the input text value via checkbox
I believe that code can help you! </head> <script type="text/javascript"> function mudaNomeFruta(idInput){ var fruta = document.getElementById(idInput).value;…
javascriptanswered Alexandre Santos 162