Hy i have the same problem on an old installation; no buttos for upload,..
$tableColumns['dateiname'] = array(
'display_text' => 'datei',
'maxlen' => 100,
'perms' => 'EVCTAXQSHOF',
'file_upload' => array(
'upload_fun' => array(&$this, 'handleUpload'),
'delete_fun' => array(&$this, 'handleDeleteFile')),
'table_fun' => array(&$this, 'formatLinkDownload'),
'view_fun' => array(&$this, 'formatLinkDownload')
);
function formatLinkDownload($col,$val,$row,$instanceName,$rowNum)
{
$html = '';
if (!empty($val))
{
$html = '<a target="_blank" href="'.htmlspecialchars($val).'">test</a>';
}
return $html;
}
i tried with you code snipsets a little bit but my fiel is rendered as type="text"
can you show the 'upload_fun' => array(&$this, 'handleUpload'),
'delete_fun' => array(&$this, 'handleDeleteFile')),
funktions?
Thanks