That is going to be a bit tricky since the event details form fields are generated by a loop in the code in the
schedule_oneclick_non_recurring.html template which starts:
$fieldnames = &main::DBGetAddFields($db);
foreach $field (@$fieldnames) {
You would need to trap the loop looking for your particular field key and then print alternative HTML table code for just that one field's form element. Something similar is described for
printing the Event Details in the previous forum message, "
Break apart event title and description".
BTW. I believe "
$field" is the valve of the event record field key currently being worked upon by the loop. It is likely what any conditional would have to be based upon.
JFYI
Dan O.