Posts by Giuliano Griffante • 119 points
10 posts
-
2
votes2
answers250
viewsA: Redirecting of permalinks
The plugin Redirection serves to manage 301 redirects, which is what you need. Another way to solve the problem, but that requires more knowledge, is to create Rewrite Rules directly in the…
wordpressanswered Giuliano Griffante 119 -
0
votes2
answers780
viewsA: How to add parameters in the html action?
You need to add one <input type="hidden" name="tbm"> within your <form>, then you can do it like this: document.form.tbm.value = "isch"; or document.form.elements["tbm"].value = "isch";…
-
0
votes2
answers115
viewsA: Line misalignment
A way to solve this problem: Using "Row" for each set of columns (until closing the grid of 12): <div class="row"> <div class="col-sm-4">...</div> <div…
-
0
votes2
answers801
viewsA: Bootstrap Accordion does not work when loading content with ajax
Hi, Your HTML is invalid. Before your second <div class="panel-heading"> is missing a <div class="panel panel-default">. Here has an example working.…
-
0
votes2
answers2691
viewsA: Display an image that is outside the JSF project
That way D:\dados\sar\uploads\ needs to be served by a Servlet, ie if I access http://localhost:8080/app/uploads, should have this directory mapped. After browser request, read the disk path and…
-
1
votes4
answers1762
viewsA: Add element in List (Arraylist)
I rewrote your code, simplifying a few steps and it worked OK, resulting in the expected output and not just presenting the last element of FilaProcessos, check out: import java.util.ArrayList;…
-
1
votes3
answers616
viewsA: Carousel bootstrap with two items upright
I used a <div class="row"> to solve this problem. Code snippet for the 7th item: <div class="item"> <div class="col-md-4"> <div class="row"> <div…
-
0
votes1
answer189
viewsA: Checklistbox using bootstrap
I believe that would be: Example code: http://jsfiddle.net/giulianobg/uc8tghxe/ Next, just add the JS controls or encapsulate the code within a form.…
-
0
votes2
answers93
viewsA: Does not pull a certain Array value
Take the element square bracket c, after all you want to access it as object and not as array. $scope.data = [{ a: 1, b: 2, c: { d: "z", e: "4" }, { d: "z", e: "4" }] }];…
angularjsanswered Giuliano Griffante 119 -
4
votes3
answers1045
viewsA: Separate values from List
One java.util.List can be accessed directly by the index, as below: List<Integer> list = ... Integer first = list.get(0); Integer last = list.get(list.size() - 1); But if you still wish to…