sorry for my bad english
i have a function that must splice an array dynamically and I need to distribute it to text boxes but all I get is the last part of spliced array.
/* sample values:
list = [1,2,3,4,5,6,7,8,9,10];
remaining=10
rows=2 (this is dynamically generated, a row is added every button click)*/
var count = 2;
function addRow(cnt,cntcallout,list){
end = Math.ceil(remaining/rows);
while(list.length > 0){
var minilistvalues = list.splice(0,end);
var minilistcount = minilistvalues.length;
}
j('#'+tableName).append('<tr id="'+tableName+'listrow'+count+'"><td width="6%" class="small"><img src="themes/images/delete.gif" border="0" onclick="deleteTableRow("",'+count+',"themes/images/","'+tableName+'listrow'+count+'","deleted'+cnt+'listrow'+count+'"); eqpax('+cnt+');"><input type="hidden" id="deleted'+cnt+'listrow'+count+'" name="tbl'+cnt+'listrow'+count+'" value="0"/> </td><td width="16%" class="small">'+username+'</td><td width="16%" class="small">'+pax+'</td><td width="16%" class="small"><select id="cbochannel'+cnt+'head'+count+'" name="cbochannel'+cnt+'head'+count+'" class="small cbohead">'+head+'</select></td><td width="16%" class="small"><input class="txtchannelequalpax txtchannelequalpax'+cnt+'" type="text" id="txt'+cntcallout+'channel'+cnt+'equalpax'+count+'" title="'+count+'" name="txt'+cntcallout+'channel'+cnt+'equalpax'+count+'" value="'+minilistcount+'" '+paxreadonly+'/></td><td width="16%" class="small"><input type="button" id="btnchannel'+cnt+'seelist'+count+'" value="Preview List" class="crmbutton small create" onclick="displaylist(\'div'+cntcallout+'channel'+cnt+'equalpax'+count+'\')" /><input type="hidden" id="txtlist'+cntcallout+'channel'+cnt+'equalpax'+count+'" name="txtlist'+cntcallout+'channel'+cnt+'equalpax'+count+'" class="txtlistchannelequalpax" value="'+minilistvalues+'"/></td><td> </td><td> </td></tr>');
count++;
cnt++;
}
for example if i have 10 in remaining variable and I add another row there will be two rows. the text boxes must have a value of 5 and 5. And if I add another row these will be the values of text boxes in each row 3,3,4 and so on.
Please help.