Saving multiple grids on single Submit

Hello,

  I have designed a screen which consists of 7 to 8 grids.I need to submit the whole screen including all grid values and my form values by calling a single submit button action.My repeated observation shows irregularities in saving of grid values.i.e not all 8 grids get saved at one go but if saved individually  values of all individual grids are saved successfully.The problem arises when tried to save all grids together.

Observation for the grids these are what i am following.

//Main script of individual grid i have included this code.
dp1.setUpdateMode(“off”);

//submit button sends action to this function where irregularities are observed
function Submitdata()
{
dp1.sendData();
dp2.sendData();
dp3.sendData();
dp4.sendData();
dp5.sendData();
dp6.sendData();
dp7.sendData();
dp8.sendData();
document.forms[""].submit();
}

Is there other way to submit multiple grids at a single click?
Please suggest at the earliest because this is high priority.

There is no other way to submit multible grids by one click. You should create separate DataProcessor object for each grid object. There is no common method which can submit each DataProcessor.