Sasa Posted March 8, 2013 Report Share Posted March 8, 2013 Tāds arī ir jautājums kā viss labāk aizpostēt uz serveri tikai kādu vienu konkrētu izvēlētu tabulas rindiņu, ir ideja ka katrā rindiņā ir poga 'apstiprināt'. Pēc apstiprināšanas pogas nospiešanas tas ieraksts tiek tālāk apstrādāts php pusē. Quote Link to comment Share on other sites More sharing options...
Kasspars Posted March 8, 2013 Report Share Posted March 8, 2013 $('button.apstiprinat').click(function(){ var data = []; $(this).parent('tr').find('input').each(function(){ data[$(this).attr('name')] = $(this).val(); }); $.ajax({ url: 'backend.php', data: data, type: 'post', success: function® { console.log® } }); }) DONE Quote Link to comment Share on other sites More sharing options...
Sasa Posted March 8, 2013 Author Report Share Posted March 8, 2013 (edited) šāds risinājums bez ajax būtu ok? <?php foreach ($rows as $row): ?> <form action="backend.php" method="post"> <p> blah blah blah ... </p> <input type="hidden" name="id" value="<?php echo $row['id']; ?>"/> <input type="submit" value="Accept"/> </form> <?php endforeach; ?> katram izvilktajam ierakstam no DB pretī ir poga submit. Edit:vai arī nav labi katram ierakstam taisīt savu formu? Edited March 8, 2013 by Sasa Quote Link to comment Share on other sites More sharing options...
Kemito Posted March 9, 2013 Report Share Posted March 9, 2013 (edited) Tev nevajag katram savu formu. Edited March 9, 2013 by Kemito Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 9, 2013 Report Share Posted March 9, 2013 Pareizi būtu bez JavaScripta un katram ierakstam savu formu. Quote Link to comment Share on other sites More sharing options...
Kasspars Posted March 9, 2013 Report Share Posted March 9, 2013 Nu jā, nebūtu labi lietotāju ar atslēgtu JavaScript atstāt bez iespējas labot ierakstus. Graceful degradation Quote Link to comment Share on other sites More sharing options...
marrtins Posted March 9, 2013 Report Share Posted March 9, 2013 Ko darīt ar lietotājiem ar izslēgtu HTML? Quote Link to comment Share on other sites More sharing options...
Mr.Key Posted March 9, 2013 Report Share Posted March 9, 2013 Aiziet iekurt krāsni un pārskaitīt sveces. Quote Link to comment Share on other sites More sharing options...
Sasa Posted March 9, 2013 Author Report Share Posted March 9, 2013 Nosvēros par labu formai katram ierakstam, bet kas šajos laikos sēž ar izslēgtu Javascriptu? Quote Link to comment Share on other sites More sharing options...
Kasspars Posted March 9, 2013 Report Share Posted March 9, 2013 Nu Graceful degradation nav slikta lieta, tā parāda tavu kā developer rūpīgo attieksmi pret savu darbu. Tikko intereses pēc atvēru http://maps.google.com ar izslēgtu JS. Nez kāpēc visu laiku redirektē uz google.com :D Agrāk google maps ļoti labi darbojās arī bez JS Quote Link to comment Share on other sites More sharing options...
marrtins Posted March 9, 2013 Report Share Posted March 9, 2013 (edited) Pietiekami reti tādas izvirtības vispār ir vajadzīgas. Sadārdzina tikai izmaksas un bremzē izstrādi un prasa dubultā testēšanu. Softam taču ir noteiktas prasības. Man ir PC 80286, VGA ar 1MB, HDD 1GB, gribu kapāt GTA4, taisiet manai mentālajai degradācijai graceful degradation. Edited March 10, 2013 by marrtins Quote Link to comment Share on other sites More sharing options...
codez Posted March 9, 2013 Report Share Posted March 9, 2013 Agrāk google maps ļoti labi darbojās arī bez JS Man šķiet, ka tas pat teorētiski nav iespējams. Quote Link to comment Share on other sites More sharing options...
codez Posted March 9, 2013 Report Share Posted March 9, 2013 P.S. Es pārlūkoju lapas ar telnetu, lūdzu degradāciju uz to ar - 2961 portā, protams ar visām bildēm, kuras tiek transformētas ASCII artā. Quote Link to comment Share on other sites More sharing options...
Sasa Posted March 10, 2013 Author Report Share Posted March 10, 2013 hmm tomēr ar katras formas submitu lapa pārlādējas tā tam arī jābūt :) neērtība rodas tur ka lapa nostājas sākumā ne tajā vietā kur es to pēdējo reizi pirms submita biju nolicis. Quote Link to comment Share on other sites More sharing options...
daGrevis Posted March 10, 2013 Report Share Posted March 10, 2013 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.