MDL-62500 tag: Update checkbox label when updating tag

This commit is contained in:
Andrew Nicols 2018-05-20 15:14:50 +08:00
parent 22744b745b
commit 39e14b2325
2 changed files with 6 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -67,6 +67,11 @@ define(['jquery', 'core/ajax', 'core/templates', 'core/notification', 'core/str'
// Set cell 'time modified' to 'now' when any of the element is updated in this row.
$('body').on('updated', '[data-inplaceeditable]', function(e) {
str.get_string('selecttag', 'core_tag', e.ajaxreturn.value)
.then(function(s) {
return $('label[for="tagselect' + e.ajaxreturn.itemid + '"]').html(s);
})
.fail(notification.exception);
str.get_string('now').done(function(s) {
$(e.target).closest('tr').find('td.col-timemodified').html(s);
});