individualproduct = @All of Transaction Product Name+'';
productitem= individual_product.split(',');
individual_quantity = @All of Transaction Quantity+''
quantityitem = individualquantity.split(',')+'';
for(count=0;count<productitem.length;count++)
{
var combine += productitem[count]+'' + quantity_item[count]+'';
}
It does not work. If we do it like :
for(count=0;count<productitem.length;count++)
{
productitem[count]+'' + quantity_item[count]+'';
}
It does not show an error. but through this, I can only get value at last index. we are expecting to get them all.