Base solution for your next web application

Activities of "MondAdmin"

Hi I bumped into problem with the excelimport of users where I think there is basefunctionality to return a list of the failed recorords back to client. Just wants to check if this is some known issue or if there are something else basic I've missed before doing further troubleshooting.

On server: _  if (invalidUsers.Any())_ _            {_ _                var file = invalidUserExporter.ExportToFile(invalidUsers); _await appNotifier.SomeUsersCouldntBeImported(args.User, file.FileToken, file.FileType, file.FileName); _            }_ _            else_ _            {_ _                await appNotifier.SendMessageAsync( _                    args.User,_ _                    localizationSource.GetString("AllUsersSuccessfullyImportedFromExcel"), _                    Abp.Notifications.NotificationSeverity.Success);_ _            }_

where file is: FileDto= FileName: "InvalidUserImportList.xlsx" FileToken: "a692744a0bc9489892696fffd713332e" FileType: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"

On client: Problem once message is presented (no reaction on click):

Showing 1 to 1 of 1 entries