added support for editing with doubleclick
This commit is contained in:
parent
4ceb87ca9e
commit
e5dfbccd06
|
@ -81,10 +81,11 @@ echo "</tr>\n";
|
||||||
// print group list
|
// print group list
|
||||||
for ($i = 0; $i < sizeof($info)-1; $i++) { // ignore last entry in array which is "count"
|
for ($i = 0; $i < sizeof($info)-1; $i++) { // ignore last entry in array which is "count"
|
||||||
echo("<tr class=\"grouplist\" onMouseOver=\"group_over(this, '" . $info[$i]["dn"] . "')\"" .
|
echo("<tr class=\"grouplist\" onMouseOver=\"group_over(this, '" . $info[$i]["dn"] . "')\"" .
|
||||||
"onMouseOut=\"group_out(this, '" . $info[$i]["dn"] . "')\"" .
|
" onMouseOut=\"group_out(this, '" . $info[$i]["dn"] . "')\"" .
|
||||||
"onClick=\"group_click(this, '" . $info[$i]["dn"] . "')\">" .
|
" onClick=\"group_click(this, '" . $info[$i]["dn"] . "')\"" .
|
||||||
"<td height=22><input type=\"checkbox\" name=\"" . $info[$i]["dn"] . "\"></td>" .
|
" onDblClick=parent.frames[1].location.href=\"../templates/account.php?type=group,DN='" . $info[$i]["dn"] . "'\">" .
|
||||||
"<td align='center'><a href=\"../templates/account.php?type=group,DN='" . $info[$i]["dn"] . "'\">" . _("Edit") . "</a></td>");
|
" <td height=22><input type=\"checkbox\" name=\"" . $info[$i]["dn"] . "\"></td>" .
|
||||||
|
" <td align='center'><a href=\"../templates/account.php?type=group,DN='" . $info[$i]["dn"] . "'\">" . _("Edit") . "</a></td>");
|
||||||
for ($k = 0; $k < sizeof($attr_array); $k++) {
|
for ($k = 0; $k < sizeof($attr_array); $k++) {
|
||||||
echo ("<td>");
|
echo ("<td>");
|
||||||
// print all attribute entries seperated by "; "
|
// print all attribute entries seperated by "; "
|
||||||
|
|
Loading…
Reference in New Issue