Tuesday, June 17, 2014

Method for Removing Selected Record from list

public void RemoveThis()
      {
         List<Integer> i=new List<Integer>();
         List<WrapClass> lstTemp=new List<WrapClass>();
         for(Integer j=0;j<lstWrap.size();j++)
             {
              if(lstWrap[j].isCheck==true)
                 {
                  i.add(j);
                 }
             }
              m=new List<Integer>();
             for(Integer k=i.size()-1;k>=0;k--)
             {
               m.add(i[k]);
             }
             
         for(Integer objInt:m)
         {
         lstWrap.remove(objInt);
         }
       }

No comments:

Post a Comment

Thanks for your comment