Posts by Aristófanes Melo • 89 points
10 posts
-
1
votes1
answer66
viewsQ: Check an option when selecting an option from another select Javascript
Hello, I have first select option: <select name="auto" id="auto"> <option value="">S/N</option> <option value="S">Sim</option> <option…
-
0
votes1
answer209
viewsQ: How to pass the value of 2 Select Option by Javascript
I have that function: <script type="text/javascript"> $(document).ready(function () { $('#auto').change(function () { $('#funcao').load('listaQuestaoAutomatica.php?auto=' + $('#auto').val());…
-
-1
votes2
answers187
viewsQ: Pass the value of 2 <select> using jQuery
I have a option select that when selecting an option it goes in BD and returns the value to another option select, works perfectly. index with the option select: <?php require './conexao.php';…
-
0
votes1
answer53
viewsA: Fill <select> in the same file through another <select> from BD data
I managed to add .change() at the event: Before: $(document).ready(function () { $('#funcao').change(function () { $('#tipo').load('listaFuncoes.php?funcao=' + $('#funcao').val()); }); });…
-
-1
votes1
answer53
viewsQ: Fill <select> in the same file through another <select> from BD data
I have a form where it contains a option select function, powered by the BD query. and On the screen appears only the 1st option select only the second will appear option select after selecting the…
-
3
votes1
answer333
viewsQ: How to validate 2 checkbox groups
Personal in my form I have 2 distinct groups that have 4 checkbox each. The 1st group is already validated. Which is this: HTML with PHP, it loops with the amount of items in the database: <?php…
-
1
votes2
answers38
viewsQ: Doubt about site pagination component
I am creating a website and would like to know what is the name or how I look on the net about that 'pagination type' that is on the sites ex: website > smarte phone > model, That you can…
-
1
votes1
answer70
viewsQ: Write Json record in variable
Hello, I am consuming a Json and I receive it in my fragment, taken only 2 records and saved in a variable created at the beginning of the class, the 2 of the String type, thus: public void…
-
0
votes1
answer65
viewsQ: Back to the main Fragment from a button
Hi, I have an app that uses NavigationDrawer, I have a fragment that has a AlertDialog, and in it I have two send and cancel buttons, no cancel wish back to the desired main Fragment. I managed to…
-
0
votes1
answer278
viewsQ: Close app upon checkout
Hello, I have an app, it comes down to: a Activity and a fragment. To activity calls the fragment through the onCreate: Code of Activivity who calls the fragment: @Override protected void…