Arg... All that typing for nothing... Figured it out!
I needed to change the screen file from:
$structure['main']['fields'][1] = array('javascript' => array('id'=>'tracker_start_row'));
$structure['main']['fields'][1][] = array('label' => 'Date');
$structure['main']['fields'][1][] = array('field' => 'tracker_start');
$structure['main']['fields'][1][] = array('label' => 'Time');
$structure['main']['fields'][1][] = array('field' => 'tracker_start');
To:
$structure['main']['fields'][1][] = array('javascript' => array('id'=>'tracker_start_row'));
$structure['main']['fields'][1][] = array('label' => 'Date');
$structure['main']['fields'][1][] = array('field' => 'tracker_start');
$structure['main']['fields'][1][] = array('label' => 'Time');
$structure['main']['fields'][1][] = array('field' => 'tracker_start');
Needed to change the javascript from being a key/array pair to a array/array pair. Might want to add this one to the FAQ if it's not already there.
Cheers,
Kyle Brost
----