We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5ec64 commit 2ac0013Copy full SHA for 2ac0013
1 file changed
ui/scripts/ui/widgets/listView.js
@@ -184,6 +184,7 @@
184
// Make copy of previous row, in case data is needed
185
$prevRow = $instanceRow.clone();
186
if (multiSelect) {
187
+ $prevRow.find('.quick-view').addClass('loading-overlay');
188
$.each($prevRow, function(index, elem) {
189
$(elem).data($($instanceRow[index]).data());
190
});
@@ -363,6 +364,9 @@
363
364
);
365
},
366
error: function(message) {
367
+ $instanceRow.removeClass('loading');
368
+ $instanceRow.find('td.quick-view').removeClass('loading-overlay');
369
+
370
if (!isHeader) {
371
if (($.isPlainObject(args.action.createForm) && args.action.addRow != 'false') ||
372
(!args.action.createForm && args.action.addRow == 'true')) {
0 commit comments