When a new user is created, the user's overview table on the top is now updated to reflect the newly added user's initial

This commit is contained in:
ninadsp
2010-07-16 19:36:12 +05:30
parent 7da51f1a8e
commit 4b18b4c7d6
2 changed files with 10 additions and 0 deletions

View File

@@ -175,6 +175,9 @@ $(document).ready(function() {
.end()
.find('tr:even')
.removeClass('odd').addClass('even');
$("#initials_table").find('td:contains('+data.new_user_initial+')')
.html(data.new_user_initial_string);
}
else {
PMA_ajaxShowMessage(PMA_messages['strErrorProcessingRequest'] + " : "+data.error, "7000");