I have a page that lists records from a database call. I want to have an 'edit' link on each row that will popup a Jquery dialog so that the row can be edited. My question is how do I pass the data from the selected row to the jquery dialog box so that it can be edited?
i have the code which open jquery popup but the textboxes are empty.

<div id="boxes">
 
<div id="dialog2" class="window">
<form method="post" action="update_books_a.php">
  <input name="name" type="text" value="<?php echo $ing['book_name']; ?>"/><br/>
  <input name="author" type="text" value="<?php echo $ing['author']; ?>"/>
 
    <input type="hidden" name="book_id" value="<?php print $ing['book_id'];?>" />
    <br/><br/>
<input type="submit" value="Update" class="close"/>
</form>
</div>

myphp code is

$select=mysql_query("select * from books where book_id='$book_id'") or die(mysql_error());
while($ing=mysql_fetch_array($select))
{
 ?>
<tr>
    <td><a href="#dialog2" name="modal"><?php echo $ing['book_name'];?></a></td>
    <td><?php echo $ing['author'];?></td></tr>
<?php
}
?>

and the jquery code is

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script>
 
$(document).ready(function() {
 
    //select all the a tag with name equal to modal
    $('a[name=modal]').click(function(e) {
        //Cancel the link behavior
        e.preventDefault();
 
        //Get the A tag
        var id = $(this).attr('href');
 
        //Get the screen height and width
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();
 
        //Set heigth and width to mask to fill up the whole screen
        $('#mask').css({'width':maskWidth,'height':maskHeight});
 
        //transition effect
        $('#mask').fadeIn(1000);
        $('#mask').fadeTo("slow",0.8);
 
        //Get the window height and width
        var winH = $(window).height();
        var winW = $(window).width();
 
        //Set the popup window to center
        $(id).css('top',  winH/2-$(id).height()/2);
        $(id).css('left', winW/2-$(id).width()/2);
 
        //transition effect
        $(id).fadeIn(2000);
 
    });
 
    //if close button is clicked
    $('.window .close').click(function (e) {
        //Cancel the link behavior
        e.preventDefault();
 
        $('#mask').hide();
        $('.window').hide();
    });
 
    //if mask is clicked
    $('#mask').click(function () {
        $(this).hide();
        $('.window').hide();
    });
 
});
 
</script>
<style type="text/css">
body {
font-family:verdana;
font-size:15px;
}
 
a {color:#333; text-decoration:none}
a:hover {color:#ccc; text-decoration:none}
 
#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#000;
  display:none;
}
 
#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:440px;
  height:200px;
  display:none;
  z-index:9999;
  padding:20px;
}
 
 
 
#boxes #dialog2 {
  background:url(../images/notice.png) no-repeat 0 0 transparent;
  width:326px;
  height:229px;
  padding:50px 0 20px 25px;
}</style>

Recommended Answers

All 2 Replies

Since jQuery opens your popup, it should be jQuery that fills the editboxes with the right text.

I have same trouble in sama case,maybe anyone can help us...thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.