diff --git a/NEWS b/NEWS index ea45e1c59..47c5c81f9 100644 --- a/NEWS +++ b/NEWS @@ -22,6 +22,9 @@ display - added the ability to specify a time range when requesting a time slot suggestion +- added live-loading support in the webmail interface with caching support +- updated CKEditor and improved its integration with the current user + language for automatic spell checking support - added support for displaying photos from contacts - added a Ukrainian translation - updated the Czech translation diff --git a/UI/WebServerResources/MailerUI.js b/UI/WebServerResources/MailerUI.js index 7bf01f642..b887f4934 100644 --- a/UI/WebServerResources/MailerUI.js +++ b/UI/WebServerResources/MailerUI.js @@ -448,7 +448,8 @@ function deleteMessageWithDelay(url, id, mailbox, messageId) { } function onPrintCurrentMessage(event) { - var rowIds = $("messageList").getSelectedRowsId(); + var messageList = $("messageListBody").down("TBODY"); + var rowIds = messageList.getSelectedNodes(); if (rowIds.length == 0) { window.alert(_("Please select a message to print.")); }