Posts by Felipe G. • 91 points
4 posts
-
0
votes1
answer157
viewsA: BOOTSTRAP TABLE does not load JSON by the "data-url" parameter
You need the Bootstrap Table files, which can be downloaded by github link author. Copy the . js and . css files from the folder src for your project and use them on the page where you created this…
-
1
votes1
answer27
viewsA: Some hr’s don’t show up
Problem solved by the author himself: I just found the problem: the browser was zooming 90%, when it goes to 100% the problem some. Thanks.
-
3
votes3
answers1389
viewsA: View array value in php
With its description for the $novas array, the value can be obtained as follows, because there is the "Novas" object within the 0 position of this vector: $novas[0]->Novas…
-
3
votes3
answers2849
viewsA: Grab button id pressed
You can use a class of generated elements, for example class='btn btn-Success test' and then: $(".teste").click(function() { var id = $(this).attr('id'); });…