I am using this code to delete a record from a ListGrid:
I have noticed that the server gets two transactions per deleted record and data sent to it for the second transation looks like this:
Is that something that has been added in v.6? What's second transation for? Can it be turned off?
Thanks
Code:
var currrentRecord = this.parentElement.lstAlcoholDrugTests.getSelectedRecord(); currrentRecord.file_id = -1; AlcoholDrugTests.removeData(currrentRecord);
Code:
<?xml version = "1.0" encoding="Windows-1252" standalone="yes"?> <VFPData> <curformfields fldname="_transaction" fldvalue="<transaction xmlns:xsi="http://www.w3.org/2000/10/"/> <curformfields fldname="protocolversion" fldvalue="1.0"/> </VFPData>
Thanks
Comment