If I create a dynamic table like this one:
Code: Select all
DefineObjectInstance {
className = "DynamicTable",
name = "Empleados",
source = "sql",
selectSQLcommand = "EMPNO,SURNAME,GIVENAME,SALARY from G14RHOLIB.PSLMST",
resultColumnNames = { "ID", "Apellido", "Nombre", "Salario" },
};
I notice that if use numbers in the order property it changes the order of the columns, but still
seems random....
Code: Select all
ENV.returnValue = [1,2,3,4];
I am chasing the right order alternating numbers, but not getting there... a refresh and the order
is gone...