by shannah » Tue Apr 08, 2008 8:40 am
In the name of keeping result sets trim the list view only obtains a "preview" of each field (as you observed).
The Dataface_ResultList class uses the calls the Dataface_QueryTool::loadSet() method to load its results (on line 149). This method contains a 4th boolean parameter which indicates whether it should fetch a preview of each record. Setting this parameter to false will effectively cause it to load entire records.
Perhaps in a future version I'll make this configurable in an INI file. For now you would have to make the manual change.
You may, in addition, have to implement a custom rendrerer for the cell in question do display the entire value, as Xataface's uses the Dataface_Record::preview() method to display the final contents which massages the data even more.
-Steve