スパンのタイトルをphp変数に割り当てることは可能ですか?
データベースから生成されたテーブルに次のスパンを追加しました。
while ($row = $database->fetch_array($result))
{
$i=1-$i;
$class = "row".$i;
echo "<tr class='{$class}' id='{$row['productId']}'>
<td > <span class='productId' title='{$row['productId']}' >". $row['category']."</span></td>
<td >" . $row['productNo']. "</td>
<td>" . $row['productName']. "</td>
<td class='edit'>" . intval($row['quantity']). "</td>
<td>" . $row['sfLf']. "</td>
<td>". $row['cost']. "</td>
<td>". $row['total']."</td>
</tr>";
}
ここで、そのスパンをクリックすると、次のjQuery UIがポップアップ表示され、データベース内の別のテーブルからクリックされた行に関連付けられたデータが表示されます。
$(document).ready( function () {
//first we fade in the form when the button is clicked
var dialog = $("#editInventory").dialog({
autoOpen: false,
title: "Add New Order",
modal: true,
width: 780,
show: { effect: 'drop',direction:"up",duration:1000 },
hide: { effect: 'drop',direction:"down",duration:1000 },
buttons: {
'Submit':function() {
submitForm($("#addNewInvoice"));
},
'Cancel':function() {
$(this).dialog('close');
$("#container").fadeTo('slow',1);
}
}
});
$(".productId").click(function() {
dialog.dialog('open');
$("#container").fadeTo('slow',.4);
return false;
});
});