This seems to be something I've run into multiple times.
1. Can I choose which widget to use based on the view? and/or modify the relationship?
ex.
form view of select "TYPE code, Description"
list view of select "TYPE code only"
My solution:
(transaction.php)
function TransactionTypeID__renderCell(&$record)
{ return '<div style="white-space:nowrap">'.substr($record->display('TransactionTypeID'),0,3).'</div>'; }
2. yui_autocomplete Awesome in form view!!!! List view only shows the ClientID number, not the ClientName.
Changing back to select works fine in list. Did I miss something?
I've searched out so many answers to my questions in the forum, thought at least the first part of this might help someone. -Baer