Thanks for pointing this out.  
To fix this, you need to make a small mod to the Dataface/RecordView.php file.   Near the top of the file, you'll see something like:
- Code: Select all
- function Dataface_RecordView(&$record){
 
 $this->record =& $record;
 $app =& Dataface_Application::getInstance();
 $fields = $this->record->_table->fields();
 
We are interested in the line:
- Code: Select all
- $fields = $this->record->_table->fields();
 
Change it to:
- Code: Select all
- $fields = $this->record->_table->fields(false,true);
 
That will allow the fields to show up in details view.
This has been fixed in my dev version and will be included in the next release.
-Steve