I use page_render to set help text for fields like this…
function Page_Render() {
$this->b_date->CustomMsg .= “Select a date using the calendar”;
$this->t_start->CustomMsg .= “Select the detail start time using the drop-down list”;
$this->t_end->CustomMsg .= “Select the detail end time using the drop-down list”;
$this->ro->CustomMsg .= “Optionally, enter the Range Officer if known”;
}
It works fine but sometimes the text appears after the field (on the same line) and sometimes below the field.
(If I narrow the screen then eventually the text on the same line will wrap to the next line but the fileds with the text on the next line doesn’t move however much I widen the window.)
Why is this?