Posts by Filipe Assad • 69 points
10 posts
-
0
votes2
answers1009
viewsA: Specification with Spring Data Jpa passing null parameter
You have to put a check inside your function to not perform the search when the parameters are null. public Page<Sistema> pesquisar(Sistema sistema, Pageable pageable) {…
-
1
votes1
answer354
viewsA: Solved - Angularjs + Pagseguro - The list does not update via callback
For Binding to work in a callback I have to force it. For this to be possible there is the function $Scope. $apply(). So in my code it would have to look like this: var self = this; this.lista = [];…
-
1
votes4
answers1878
viewsA: Updating an element with Javascript
let inicial = 0; const numeros = [1,2,3,4,5,6,7,8,9,10]; function proximo (){ for(let i = 0; i <= 3; i++){ if(numeros[inicial] != null){ const ul = document.createElement('UL'); const numerosUl =…
-
0
votes1
answer354
viewsQ: Solved - Angularjs + Pagseguro - The list does not update via callback
I’m trying to list the types of payments available in the Secure Pay Api. To do this I use a function js of the call pagseguro PagSeguroDirectPayment.getPaymentMethods() The problem is that in the…
-
2
votes1
answer117
viewsQ: Difficulty Making a Different Shape
div { width: 280px; height: 280px; background: #1e90ff; -webkit-clip-path: polygon(15% 0, 100% 0%, 100% 29%, 41% 49%); clip-path: polygon(15% 0, 100% 0%, 100% 29%, 41% 49%); }…
-
0
votes1
answer69
viewsA: Problem with urls and views inside the server
I managed to solve the problem. It was the version of Django. It was using version 1.10 that comes as standard Pip install Django. installed version 1.9 and it worked. Thank you so much for the…
-
1
votes1
answer69
viewsQ: Problem with urls and views inside the server
I was studying python and Django, and I decided to make my wedding website in January. The project runs perfectly on my local pc, the problem is when I deploy on digital Ocean and it gives that…
-
0
votes4
answers2422
viewsA: How to open a keyboard when you "focus" on an Edittext?
Checks whether in the Manifest has that tag on Activity: android:windowSoftInputMode="stateAlwaysHidden" If you have, remove.
androidanswered Filipe Assad 69 -
0
votes1
answer43
viewsA: Values of Activity fields are deleted after event in Dialogfragment
Instead of you wearing one Fragmentdialog use a Dialog. He’s probably resetting his screen because he’s calling a new one Activity. Using the Dialog you can call a layout creating in xml and give a…
-
1
votes3
answers1476
viewsA: How to know which Boot was clicked on my Listview?
Hello! You will know which button clicked by the id you put in xml. The only thing you have to worry about is putting the event inside the getView of your Adapter. @Override public View getView(int…