Hi Shannah, this is a great framework!
thank you for you have put in this project.
I have 2 question:
1. How do you customize label, description and widget in one-to-many form?
I have 2 tables, which are customers and orders, and I use customers as source and orders as destination.
I've tried put some data in /path/to/site/tables/customers/fields.ini without any success.
...
[Status]
widget:type = select
vocabulary = Status
[Orderdate]
widget:type = calendar
...
Status and Orderdata are the fields of Orders
2. I have an error in one-to-many form;
Found 2 Records in relationship Orders
Notice: Array to string conversion in /var/www/htdocs/df/Dataface/Error.php on line 61
my orders tables consist:
CREATE TABLE orders (
OrderID int(11) NOT NULL auto_increment,
CustomerID int(11) default NULL,
Description text,
Price varchar(10) default NULL,
Status varchar(10) default NULL,
Orderdate timestamp(14) NOT NULL,
PRIMARY KEY (OrderID)
) TYPE=MyISAM;
Thank you for your help,
Indra