Using a connector to populate a form.
In my connector I have:
$gridConn->render_table("sales_flat_order","entity_id","customer_lastname,
customer_firstname,grand_total,customer_email,status");
“enity_id” is what this table uses for it’s “id”.
When I run this code:
editStatWinForm.load("../connectors/partForm.php?entity_id=1");
I get the “ID parameter is missed” error. If I change the parameter to “id” the error goes away but I get an empty result set.
Since I have no control over the column names of the table, how do I get this to work. It seems the “load” function requires an “id” column to work.
Thanks for the help!!