• Rashmi Kumari 33
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
action.setParams({
                "Bt": component.get("v.BatchList"),
                "QliRowNum": 1,
                "RowIndex":[component.get("v.rowIndex"),component.get("v.BatchList")]
            });
            action.setCallback(this,function(resp){
lightning APEX: 
@AuraEnabled
    public static list<batch__c> SaveBatchDet(integer QliRowNum,list<Batch__c> Bt,map<string,list<batch__c>> RowIndex){

I want to pass  MAP value 

"RowIndex":[component.get("v.rowIndex"),component.get("v.BatchList")]

How can i do that ?