what would be the best method to put some (non editable static) text on the form (ie. message, warning, instruction etc.) ?
Arthur
what would be the best method to put some (non editable static) text on the form (ie. message, warning, instruction etc.) ?
Arthur
Re: formating form
i use label-fields, not linked to a database, like “{info}” or st. and i use the ajax-events or the events (onchange… onvalidate…) to update them with
"
if (…) {
{info}=“Here is the newest information”;
} else {
{info} = “'The name “. {name} .” is allready choosen.”;
}
"
Re: formating form
OK, I see. I’m completely unfamiliar with the scripts yet, so looks like I have to study this
where can I find any examples on using scripts with SC ?
Arthur