Hi,
I have an object array to store all the text-boxes that have been changed. (cell-ids along with values)
The function looks like this:
function fnEditData(textObj) {
var parentTDCell = textObj.parentNode;
textValObj[parentTDCell.id] = textObj.value;
computePltTotals(textObj);
computeMktTotals(textObj);
}
I pass this textValObj[] to another page.
Now my question is, how can i retrieve all the indices of the array as a collection?
Can anyone help?
thanks.
I have an object array to store all the text-boxes that have been changed. (cell-ids along with values)
The function looks like this:
function fnEditData(textObj) {
var parentTDCell = textObj.parentNode;
textValObj[parentTDCell.id] = textObj.value;
computePltTotals(textObj);
computeMktTotals(textObj);
}
I pass this textValObj[] to another page.
Now my question is, how can i retrieve all the indices of the array as a collection?
Can anyone help?
thanks.