H
|
hsan author 7/27/2011 |
http://www.asprunner.com/forums/topic/17424-unknown-column-fieldname-in-field-list/
|
![]() |
Sergey Kornilov admin 7/27/2011 |
You need to remove id1 field from the Add page (via 'Choose fields' screen). This way PHPRunner won't try to insert this field and your Add page will work. |
H
|
hsan author 7/27/2011 |
Thanks for your input. The field id1 is dropdown (categories) that data entry depends on. What wold be the way then to make this work (dependent fields on a form)? |
H
|
hsan author 7/27/2011 |
Thanks for your input. The field id1 is dropdown (categories) that data entry depends on. What wold be the way then to make this work (dependent fields on a form)? |
H
|
hsan author 7/27/2011 |
Thanks for your input. The field id1 is dropdown (categories) that data entry depends on. What wold be the way then to make this work (dependent fields on a form)? Thanks
|
C
|
cgphp 7/27/2011 |
Okay let me answer my own question. When you have foreign field in a table view and want to add records to that table (not to foreign field) then you need to add this in "before record added" event: unset($values["your_foreign_field"]); Is that correct?
|
H
|
hsan author 7/28/2011 |
That's right !
|