开发者

Problem with Mootools Ajax request and submitting a form

I have a table with content comming from a database. Now i tryed to realize a way to (a) delete rows from the table (b) edit the content of the row "on the fly". (a) is working perfectly (b) makes my head smoking!

Here is the complete Mootools Code:

    <script type="text/javascript">
window.addEvent('domready', function() {

var eDit = $('edit_hide');
eDit.slide('hide'); 

var del = new Request.HTML(
{
    url: 'fuss_response.php',
    encoding: 'utf-8',
    update: eDit,
    onComplete: function(response)
    {
    开发者_如何学CeDit.slide('in');
    }
});

$$('input.delete').addEvent( 'click', function(e){
      e.stop();
    var aID = 'delete_', bID = '';
    var deleteID = this.getProperty('id').replace(aID,bID); 
      new MooDialog.Confirm('Soll der Termin gelöscht werden?', function(){
        del.send({data : "id=" + deleteID}); 
      }, function(){
      new MooDialog.Alert('Schon Konfuzius hat gesagt: Erst denken dann handeln!');
      });  
    });

var edit = new Request.HTML(
{
    url: 'fuss_response_edit.php',
    update: eDit,
    encoding: 'utf-8',
    onComplete: function(response)
    {
    $('sst').addEvent( 'click', function(e){
      e.stop();
    safe.send();
    });
    }
});

var safe = new Request.HTML(
{
    url: 'termin_safe.php',
    encoding: 'utf-8',
    update: eDit,
    onComplete: function(response)
    {

    }
});

$$('input.edit').addEvent( 'click', function(e){
      e.stop();
    var aID = 'edit_', bID = '';
    var editID = this.getProperty('id').replace(aID,bID); 
      edit.send({data : "id=" + editID});
      $('edit_hide').slide('toggle');
    });

});
</script>

Here the PHP Part that makes the Edit Form:

<?php

$cKey = mysql_real_escape_string($_POST['id']);

$request = mysql_query("SELECT * FROM fusspflege WHERE ID = '".$cKey."'");
  while ($row = mysql_fetch_object($request))
    {
    $id = $row->ID;
    $name = $row->name;
    $vor = $row->vorname;
    $ort = $row->ort;
    $tel = $row->telefon;
    $mail = $row->email;
    }
echo '<form id="termin_edit" method="post" action="">';
echo '<div><label>Name:</label><input type="text" id="nns" name="name" value="'.$name.'"></div>';
echo '<div><label>Vorname:</label><input type="text" id="nvs" name="vorname" value="'.$vor.'"></div>';
echo '<div><label>Ort:</label><input type="text" id="nos" name="ort" value="'.$ort.'"></div>';
echo '<div><label>Telefon:</label><input type="text" id="nts" name="telefon" value="'.$tel.'"></div>';
echo '<div><label>eMail:</label><input type="text" id="nms" name="email" value="'.$mail.'"></div>';
echo '<input name="id" type="hidden" id="ids" value="'.$id.'"/>';
echo '<input type="button" id="sst" value="Speichern">';
echo '</form>';
?>

And last the Code of the termin_safe.php

$id = mysql_real_escape_string($_POST['id']);
$na = mysql_real_escape_string($_POST['name']);
$vn = mysql_real_escape_string($_POST['vorname']);
$ort = mysql_real_escape_string($_POST['ort']);
$tel = mysql_real_escape_string($_POST['telefon']);
$em = mysql_real_escape_string($_POST['email']);  
$score = mysql_query("UPDATE fuspflege SET name = '".$na."', vorname = '".$vn."', ort = '".$ort."', telefon = '".$tel."', email = '".$em."' WHERE ID = '".$id."'");

As far as i can see the request does work but the data is not updated! i guess somethings wrong with the things posted For any suggestions i will be gladly happy!

PS after some comments: I see the problem in this part:

var edit = new Request.HTML(
{
    url: 'fuss_response_edit.php',
    update: eDit,
    encoding: 'utf-8',
    onComplete: function(response)
    {
    $('sst').addEvent( 'click', function(e){
      e.stop();
    safe.send();
    });
    }
});

The "Edit" request opens the form with the prefilled input fields and then attaches a click event to the submit button which should call a new request when clicked. This third request i fail to pass the data of the input fields. i tried to get the value of each field like this:

var name = $('nns').getProperty('value');

and pass it this way

.send({data : "name=" + name});

did not work so far

PPS: as requested the code that makes the html from main site

<?php  $request = mysql_query("SELECT * FROM fusspflege");
  echo '<form id="fusspflege" method="post" action="">';
  echo '<table class="fuss_admin">';
  echo '<tr><th>Name</th><th>Vorname</th><th>Ort</th><th>Telefon</th><th>eMail</th><th>Uhrzeit</th><th>Datum</th><th></th><th></th></tr>';
  echo '<tr><td colspan=8 id="upd"></td></tr>';
  while ($row = mysql_fetch_object($request))
    {
    $id = $row->ID;
    $name = $row->name;
    $vor = $row->vorname;
    $ort = $row->ort;
    $tel = $row->telefon;
    $mail = $row->email;
    $dat = $row->datum;
    $uhr = $row->uhrzeit;

    echo '<tr><td>'.$name.'</td><td>'.$vor.'</td><td>'.$ort.'</td><td>'.$tel.'</td><td>'.$mail.'</td><td>'.$uhr.'</td><td>'.$dat.'</td>';
    echo '<td><input id="delete_'.$id.'" class="delete" type="button" value="X"></td>';
    echo '<td><input id="edit_'.$id.'" class="edit" type="button" value="?"></td>';
    echo '</tr>';
    }
  echo '</table>';
  echo '</form>';
  echo '<div id="edit_hide"></div>';
?>

UPDATE:

       <form action="" method="post" id="termin_edit">
    <div>
        <label>
            Name:
        </label>
        <input type="text" value="NAME" name="name" id="nns">
    </div>
    <div>
        <label>
            Vorname:
        </label>
        <input type="text" value="Marianne" name="vorname" id="nvs">
    </div>
    <div>
        <label>
            Ort:
        </label>
        <input type="text" value="MArkt Wald" name="ort" id="nos">
    </div>
    <div>
        <label>
            Telefon:
        </label>
        <input type="text" value="" name="telefon" id="nts">
    </div>
    <div>
        <label>
            eMail:
        </label>
        <input type="text" value="info@rudolfapotheke.de" name="email" id="nms">
    </div>
    <input type="hidden" value="115" id="ids" name="id">
    <input type="button" value="Speichern" id="sst">
</form>


Update:

This is the mootools script based on the form you gave me that should work with your html:

$('sst').addEvent('click', function(event) {
    var data;
    event.stop();
    var myInputEl = $$('#termin_edit input');
    for(var i=0; i<myInputEl.length; i++){
        if(i == 0)
            data = myInputEl[i].name + "=" + myInputEl[i].value;
        else
            data += "&" + myInputEl[i].name + "=" + myInputEl[i].value;
    }
    myRequest.send(data);
});

Also add alert to your Request call back for the edit just to test if the ajax worked:

    onSuccess: function(responseText) {
        alert("done! " + responseText);
    },
    onFailure: function() {
        alert("failed");
    }

On the php side create a new PHP file and put the following in it and have ajax target it:

<?php
print_r($_POST);
?>

The Ajax should return the $_POST array in the alert box.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜