RESOLVED - Sending the data "all in once" with dataprocessor

Hello,
i looking for sending data from dhtmlxgrid to my server, in order to store them.

I need to perfom this action in only one transaction, but my validation is currently row by row.

[code]var monVerificateur = new dataProcessor(url+sid);
monVerificateur.enableDataNames(true);
monVerificateur.setUpdateMode(“off”);
monVerificateur.setTransactionMode(“POST”);
monVerificateur.init(tableauDuplication);

function validerDuplication()
{
monVerificateur.sendData();
}[/code]

What’s wrong with my code ?

To force “send all at once” behavior, you need to have

monVerificateur.setTransactionMode(“POST”,true);

That works !

Thanks.