To do it :
edit the file
application/controllers/admin/responses.php
Find the line :
Code:
$column_names[] = "<strong class='qcode'>{$column['name']}</strong> <span class='separator hidden'>:</span> <span class='questiontext'>".ellipsize($column['title'],30,0.6,"...")."</span>";
(should be line 574)
replace it by :
Code:
$column_names[] = "<strong class='qcode'>{$column['name']}</strong> <span class='separator hidden'>:</span> <span class='questiontext'>".$column['title']."</span>";
Now, the whole title is displayed. To change the column widht, in the same file, find :
Code:
$column_model[] = array(
'name' => $code,
'index' => $fielddetails['fieldname'],
'sorttype' => 'string',// Depend of question type can be excellent
'sortable' => true,
'width' => '100',
'align' => 'left',
'editable' => false,
'hidden' => (bool)$bHidden,
'title' => $text,
);
Should be at line 555.
Then you can change the setting 'width' to whatever you want.