mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Fix to pass all affinity group rows to action fn
This commit is contained in:
parent
c4fa5c0f17
commit
b03fb208a9
@ -97,8 +97,15 @@
|
|||||||
tierID: $dataList.find('.tier-select select').val(),
|
tierID: $dataList.find('.tier-select select').val(),
|
||||||
_subselect: $dataList.find('tr.multi-edit-selected .subselect select').val(),
|
_subselect: $dataList.find('tr.multi-edit-selected .subselect select').val(),
|
||||||
context: $.extend(true, {}, context, {
|
context: $.extend(true, {}, context, {
|
||||||
affinityGroups: $dataList.find('tr.multi-edit-selected').map(function(index, elem) {
|
affinityGroups: $dataList.find('tbody tr').map(function(index, elem) {
|
||||||
return $(elem).data('json-obj');
|
var itemData = $(elem).data('json-obj');
|
||||||
|
itemData._isSelected = false;
|
||||||
|
|
||||||
|
if ($(elem).hasClass('multi-edit-selected')) {
|
||||||
|
itemData._isSelected = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return itemData;
|
||||||
})
|
})
|
||||||
}),
|
}),
|
||||||
response: {
|
response: {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user