update user editor a bit
This commit is contained in:
parent
fb0b2ebf84
commit
84391d6948
|
@ -435,8 +435,8 @@ class Pref_Users extends Handler_Protected {
|
||||||
|
|
||||||
print "<tr class=\"title\">
|
print "<tr class=\"title\">
|
||||||
<td align='center' width=\"5%\"> </td>
|
<td align='center' width=\"5%\"> </td>
|
||||||
<td width=''><a href=\"#\" onclick=\"updateUsersList('login')\">".__('Login')."</a></td>
|
<td width='30%'><a href=\"#\" onclick=\"updateUsersList('login')\">".__('Login')."</a></td>
|
||||||
<td width='20%'><a href=\"#\" onclick=\"updateUsersList('access_level')\">".__('Access Level')."</a></td>
|
<td width='30%'><a href=\"#\" onclick=\"updateUsersList('access_level')\">".__('Access Level')."</a></td>
|
||||||
<td width='20%'><a href=\"#\" onclick=\"updateUsersList('created')\">".__('Registered')."</a></td>
|
<td width='20%'><a href=\"#\" onclick=\"updateUsersList('created')\">".__('Registered')."</a></td>
|
||||||
<td width='20%'><a href=\"#\" onclick=\"updateUsersList('last_login')\">".__('Last login')."</a></td></tr>";
|
<td width='20%'><a href=\"#\" onclick=\"updateUsersList('last_login')\">".__('Last login')."</a></td></tr>";
|
||||||
|
|
||||||
|
@ -448,15 +448,16 @@ class Pref_Users extends Handler_Protected {
|
||||||
|
|
||||||
$uid = $line["id"];
|
$uid = $line["id"];
|
||||||
|
|
||||||
print "<tr class=\"$class\" id=\"UMRR-$uid\">";
|
print "<tr id=\"UMRR-$uid\">";
|
||||||
|
|
||||||
$line["login"] = htmlspecialchars($line["login"]);
|
$line["login"] = htmlspecialchars($line["login"]);
|
||||||
|
|
||||||
$line["created"] = make_local_datetime($this->link, $line["created"], false);
|
$line["created"] = make_local_datetime($this->link, $line["created"], false);
|
||||||
$line["last_login"] = make_local_datetime($this->link, $line["last_login"], false);
|
$line["last_login"] = make_local_datetime($this->link, $line["last_login"], false);
|
||||||
|
|
||||||
print "<td align='center'><input onclick='toggleSelectRow(this);'
|
print "<td align='center'><input onclick='toggleSelectRow2(this);'
|
||||||
type=\"checkbox\" id=\"UMCHK-$uid\"></td>";
|
dojoType=\"dijit.form.CheckBox\" type=\"checkbox\"
|
||||||
|
id=\"UMCHK-$uid\"></td>";
|
||||||
|
|
||||||
$onclick = "onclick='editUser($uid, event)' title='".__('Click to edit')."'";
|
$onclick = "onclick='editUser($uid, event)' title='".__('Click to edit')."'";
|
||||||
|
|
||||||
|
|
11
js/prefs.js
11
js/prefs.js
|
@ -83,13 +83,8 @@ function addUser() {
|
||||||
function editUser(id, event) {
|
function editUser(id, event) {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!event || !event.ctrlKey) {
|
|
||||||
|
|
||||||
notify_progress("Loading, please wait...");
|
notify_progress("Loading, please wait...");
|
||||||
|
|
||||||
selectTableRows('prefUserList', 'none');
|
|
||||||
selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
|
|
||||||
|
|
||||||
var query = "?op=pref-users&method=edit&id=" +
|
var query = "?op=pref-users&method=edit&id=" +
|
||||||
param_escape(id);
|
param_escape(id);
|
||||||
|
|
||||||
|
@ -100,12 +95,6 @@ function editUser(id, event) {
|
||||||
document.forms['user_edit_form'].login.focus();
|
document.forms['user_edit_form'].login.focus();
|
||||||
} });
|
} });
|
||||||
|
|
||||||
} else if (event.ctrlKey) {
|
|
||||||
var cb = $('UMCHK-' + id);
|
|
||||||
cb.checked = !cb.checked;
|
|
||||||
toggleSelectRow(cb);
|
|
||||||
}
|
|
||||||
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
exception_error("editUser", e);
|
exception_error("editUser", e);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1408,6 +1408,6 @@ ul#filterDlg_Matches li div.dijitCheckBox, ul#filterDlg_Actions li div.dijitChec
|
||||||
margin-right : 5px;
|
margin-right : 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.prefPrefsList td labe/ {
|
table.prefPrefsList td label, table.prefUserList td {
|
||||||
cursor : pointer;
|
cursor : pointer;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue