This commit is contained in:
2020-09-01 22:08:47 +00:00
parent e13898dd95
commit 8d180fcd66
2 changed files with 50 additions and 8 deletions

View File

@@ -470,16 +470,13 @@ export default {
selectedRowIds = vm.selected.map(z => {
return z.id;
});
selectedRowIds.reverse();//destructive but in this case doesn't matter at all
//reverse them non destructively
// return array.map((item,idx) => array[array.length-1-idx])
selectedRowIds.reverse();
}
/* public AyaType ObjectType { get; set; }
public long[] SelectedRowIds { get; set; }
public string DataListKey { get; set; }
public string ListView { get; set; }//optional, if null or empty will use default list view built into DataList
*/
*/
return {
ObjectType: ayaType,
selectedRowIds: selectedRowIds,