1 parent d5d1d2a commit b73c29eCopy full SHA for b73c29e
1 file changed
src/Presentation/SmartStore.Web/Administration/Views/Export/Preview.cshtml
@@ -41,10 +41,10 @@
41
$('#ExportAll, #ExportSelected').click(function (e) {
42
e.preventDefault();
43
var form = $('#ProfileExportForm'),
44
- exportAll = $(this).attr('name') === 'ExportAll';
+ exportAll = $(this).attr('id') === 'ExportAll';
45
46
if (!exportAll && selectedIds.length === 0) {
47
- EventBroker.publish("message", { title: '@T("Admin.Common.NoEntriesSelected")', type: 'warning' });
+ displayNotification('@T("Admin.Common.NoEntriesSelected")', 'warning');
48
return false;
49
}
50
0 commit comments