Please can you help me,
i have this function
function updateObj(oEvent:Object,sColumn:String):Void
{
vopf.editField(0, sColumn, oEvent.target.text);
}
and this pojo ActionScript
class vo.as400.PfVO {
public var aacupf : Number;
public var blrepf : String;
public var cartpf : String;
public var cdogpf : String;
public var ceaqpf : Number;
public var ceulpf : Number;
public var cfpfpf : vo.as400.CCategoriFiscaleVO;
}
if use updateObj('cartpf','CIAO') work
updateObj('cfpfpf.modepf','PIZZA') don't work
Can you help me please
Devis