Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please help me. I'm working on a website using the above mentioned languages, that displays a table with information from a mysql database (testing in localhost). In addition, every row in the table is generated by a "do-while" loop (naturally) as well as each row has a submit button that displays all the information for that row (and that row only) in a popup box. The problem I'm facing is that when the button for any single row is the clicked, the popup shows all the information for all the tables. The syntax I have is as follows:

Submit Button in the table:

 <table id="results" align="center" class="tbl" width="100%">  
 do
 {
    ...
    print "<td>";
    $sub = $row['pid']; //the id from each row in the database

    print "<form method=\"get\"><span class=\"button\"> ";
    $btn = '<input type="submit" id="submit" onclick="" 
    value="'.$sub.'" />';

    echo $btn;
    print "</span></form></td>";

The Popup showing full information for the row the button is on:

do
{
 print "<span class=\"popupContact\">";
    print "<a class=\"popupContactClose\">x</a>";
       print "Status: ";
       echo $row['status']; 

    print "<p class=\"contactArea\">";
       print "<b>Team Leader: ";
       echo $row['team_lead']; </b></p>

    print "<span class=\"backgroundPopup\"></span>";
 }while($button == $row['pid']);

End of Table

 }while($row = mysql_fetch_array($result));
 </table>

Now onto the CSS (general.css):

 .popupContact{
     position:fixed;
     z-index:2;
     font-size:13px;
  }

  .popupContactClose{
     display:block;
  }

  .backgroundPopup{
     background:#000000;
     z-index:1;
  }

  .button{
     text-align:center;
     margin:5px;
     color: #d2d2d2;
  }

And now the slightly complex Javascript (popup.js):

  var popupStatus = 0;
  var cnt = 16;

function loadPopup(){
  cnt = 1;

  //loads popup only if it is disabled  
centerPopup();
while(popupStatus==0){      
    $(".backgroundPopup").css({
        "opacity": "0.5"
    });
    $(".backgroundPopup").fadeIn("slow");
    $(".popupContact").fadeIn("slow");
    popupStatus = 1;
}
}

function disablePopup(){
//disables popup only if it is enabled
while(popupStatus==1){
    $(".backgroundPopup").fadeOut("slow");
    $(".popupContact").fadeOut("slow");
    popupStatus = 0;
    cnt=16;
}
}

//centering popup
function centerPopup(){
    //request data for centering
    var windowWidth = document.documentElement.clientWidth;
    var windowHeight = document.documentElement.clientHeight;
    var popupHeight = $(".popupContact").height();
    var popupWidth = $(".popupContact").width();
    //centering
    $(".popupContact").css({
        "position": "absolute",
        "top": windowHeight/2-popupHeight/2,
        "left": windowWidth/2-popupWidth/2
    });
    //only need force for IE6

    $(".backgroundPopup").css({
        "height": windowHeight
    });

}

//CONTROLLING EVENTS IN jQuery

$(document).ready(function(){

//LOADING POPUP
    //Click the button event!
$(".button").click(function(){

    //centering with css
    centerPopup();
    //load popup
    loadPopup();
});

//CLOSING POPUP
//Click the x event!
$(".popupContactClose").click(function(){
    disablePopup();
});
//Click out event!
$(".backgroundPopup").click(function(){
    disablePopup();
});
//Press Escape event!
$(document).keypress(function(e){
    if(e.keyCode==27 && popupStatus==1){
        disablePopup();
    }
});



});

I've been trying to get the popup to show only the relevant info for weeks now and I'm stumped. If anyone could assist me with this I would be most grateful. Also, if something about this question is unclear, please feel free to let me know. Thank you :)

share|improve this question
can you give the link to the plugin that you're using – Kyokasuigetsu Jul 13 '12 at 0:31
Where is your PHP code that handles the form request? When you click on the button in the table, you need some PHP to handle the form. Or I just don't understand what you're trying to do. – donutdan4114 Jul 13 '12 at 2:05
Its not really a plugin, its custom code that looks and acts like lightbox. Here is the link: tssprojects.info/ssd.php – user1497243 Jul 13 '12 at 3:08
The button is hidden, its in the status column so it can be utilized by clicking a cell in that coloumn – user1497243 Jul 13 '12 at 3:11
It would help is if you could show a example of what you are trying to do its very hard to understand what you are trying to do from our point of view. – ryanc1256 Jul 14 '12 at 7:51
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.